23 lines
442 B
Nix
23 lines
442 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; [
|
|
better-mouse-mode
|
|
weather
|
|
sensible
|
|
sidebar
|
|
sysstat
|
|
catppuccin
|
|
battery
|
|
];
|
|
extraConfig = ''
|
|
set-option -g status-right "#{weather}"
|
|
'';
|
|
};
|
|
}
|