diff --git a/users/modules/global/tmux.nix b/users/modules/global/tmux.nix index 73475f8..90f36ef 100644 --- a/users/modules/global/tmux.nix +++ b/users/modules/global/tmux.nix @@ -1,12 +1,9 @@ { ... }: { programs.tmux = { enable = true; + mouse = true; clock24 = true; - terminal = "screen-256color"; + terminal = "xterm-256color"; prefix = "C-Space"; - - extraConfig = '' - set -g mouse on - ''; }; }