19 lines
343 B
Nix
19 lines
343 B
Nix
{ pkgs, ... }: {
|
|
programs.tmux = {
|
|
enable = true;
|
|
mouse = true;
|
|
tmuxinator.enable = true;
|
|
tmuxp.enable = true;
|
|
clock24 = true;
|
|
keyMode = "vi";
|
|
terminal = "xterm-256color";
|
|
plugins = with pkgs.tmuxPlugins; [
|
|
weather
|
|
sensible
|
|
sidebar
|
|
sysstat
|
|
catppuccin
|
|
battery
|
|
];
|
|
};
|
|
}
|