1
0
Fork 0
nix-configuration/modules/apps/tmux.nix

19 lines
301 B
Nix
Raw Normal View History

2024-05-06 00:05:14 -04:00
{ pkgs, config, lib, ... }:
let
cfg = config.host.apps.tmux;
in
with lib;
{
options = {
host.apps.tmux.enable = mkEnableOption (mdDoc "Enables tmux - terminal multiplexer");
};
config = mkIf cfg.enable {
programs.tmux = {
enable = true;
newSession = true;
clock24 = true;
};
};
}