zaphyra's git: nixfiles

zaphyra's nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
{
  config,
  lib,
  ...
}:

{

  options.zaphyra.programs.tmux.enable = lib.mkEnableOption "Enable tmux terminal multiplexer";

  config = lib.mkIf config.zaphyra.programs.tmux.enable {
    programs.tmux = {
      enable = true;
      clock24 = true;
      terminal = "xterm-256color";
      extraConfig = ''
        set -g mouse on
      '';
    };
  };

}