summaryrefslogtreecommitdiff
path: root/hermes/home-manager/leo/programs/tmux.nix
blob: f7a74a8755525e7fb9fcd5b3823b428ef0dc31da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{lib, config, ...}: {
  options.tmux.enable = lib.mkEnableOption "tmux config";

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

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