1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ config, lib, ... }:
let
cfg = config.ctucxConfig.programs.tmux;
in {
options = {
ctucxConfig.programs.tmux = {
enable = lib.mkEnableOption "tmux";
};
};
config = lib.mkIf cfg.enable {
home-manager.users.katja.programs.tmux = {
enable = true;
clock24 = true;
terminal = "xterm-256color";
extraConfig = ''
set -g mouse on
'';
};
};
}