diff --git a/modules/home/caem/development/tmux.nix b/modules/home/caem/development/tmux.nix new file mode 100644 index 0000000..d4c3b82 --- /dev/null +++ b/modules/home/caem/development/tmux.nix @@ -0,0 +1,20 @@ +{ pkgs, ... }: + +{ + home.packages = with pkgs; [ + wl-clipboard + ]; + + programs.tmux = { + enable = true; + baseIndex = 1; + historyLimit = 696969696969; + mouse = true; + newSession = true; + terminal = ",xterm-256color:Tc"; + clock24 = true; + extraConfig = '' + set -s copy-command 'wl-copy' + ''; + }; +}