nix/home-manager/common/software/cli/tmux.nix
2024-03-15 10:14:18 +09:00

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
];
};
}