diff --git a/home-manager/common/software/cli/default.nix b/home-manager/common/software/cli/default.nix index 704d52e9..18be5184 100644 --- a/home-manager/common/software/cli/default.nix +++ b/home-manager/common/software/cli/default.nix @@ -9,5 +9,6 @@ ./ssh.nix ./nixvim.nix ./rbw.nix + ./tmux.nix ]; } diff --git a/home-manager/common/software/cli/tmux.nix b/home-manager/common/software/cli/tmux.nix new file mode 100644 index 00000000..29f98baf --- /dev/null +++ b/home-manager/common/software/cli/tmux.nix @@ -0,0 +1,14 @@ +{ ... }: { + programs.tmux = { + enable = true; + mouse = true; + tmuxinator.enable = true; + tmuxp.enable = true; + clock24 = true; + keyMode = "vi"; + terminal = "xterm-256color"; + extraConfig = { + + }; + }; +}