nix/home-manager/common/software/cli/tmux.nix
2024-03-15 11:40:44 +09:00

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}"
'';
};
}