nix-dots/common/tmux/default.nix
2025-05-16 18:17:32 -05:00

26 lines
385 B
Nix

{
config,
lib,
pkgs,
...
}: {
programs.tmux = {
enable = true;
baseIndex = 1;
clock24 = true;
keyMode = "vi";
newSession = true;
resizeAmount = 10;
shortcut = "b";
terminal = "screen-256color";
plugins = with pkgs.tmuxPlugins; [
];
extraConfig = builtins.readFile ./tmux.conf;
customPaneNavigationAndResize = true;
};
}