Add tmux configs

This commit is contained in:
albert 2024-03-14 14:50:32 +09:00
parent 688508cbde
commit 4f9ae28afd
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
2 changed files with 15 additions and 0 deletions

View file

@ -9,5 +9,6 @@
./ssh.nix ./ssh.nix
./nixvim.nix ./nixvim.nix
./rbw.nix ./rbw.nix
./tmux.nix
]; ];
} }

View file

@ -0,0 +1,14 @@
{ ... }: {
programs.tmux = {
enable = true;
mouse = true;
tmuxinator.enable = true;
tmuxp.enable = true;
clock24 = true;
keyMode = "vi";
terminal = "xterm-256color";
extraConfig = {
};
};
}