nix/home-manager/common/software/cli/tmux.nix

24 lines
442 B
Nix
Raw Normal View History

2024-03-15 02:14:18 +01:00
{ pkgs, ... }: {
2024-03-14 06:50:32 +01:00
programs.tmux = {
enable = true;
mouse = true;
tmuxinator.enable = true;
tmuxp.enable = true;
clock24 = true;
keyMode = "vi";
terminal = "xterm-256color";
2024-03-15 02:14:18 +01:00
plugins = with pkgs.tmuxPlugins; [
2024-03-15 02:38:02 +01:00
better-mouse-mode
2024-03-15 02:14:18 +01:00
weather
sensible
sidebar
sysstat
catppuccin
battery
];
2024-03-15 03:40:44 +01:00
extraConfig = ''
set-option -g status-right "#{weather}"
'';
2024-03-14 06:50:32 +01:00
};
}