summaryrefslogtreecommitdiff
path: root/components/programs/tmux.nix
blob: db3f7a6963d1b6eaaf8b6cf30a1b23220f9524fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{lib, config, ...}: {
  options.tmux.enable = lib.mkEnableOption "Tmux's config";

  config = lib.mkIf config.tmux.enable {
    programs.tmux = {
      enable = true;

      baseIndex = 1;
      clock24 = true;
    };
  };
}