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

20 lines
343 B
Nix
Raw Normal View History

2024-03-15 10:14:18 +09:00
{ pkgs, ... }: {
2024-03-14 14:50:32 +09:00
programs.tmux = {
enable = true;
mouse = true;
tmuxinator.enable = true;
tmuxp.enable = true;
clock24 = true;
keyMode = "vi";
terminal = "xterm-256color";
2024-03-15 10:14:18 +09:00
plugins = with pkgs.tmuxPlugins; [
weather
sensible
sidebar
sysstat
catppuccin
battery
];
2024-03-14 14:50:32 +09:00
};
}