diff --git a/modules/home/cli-apps/tmux/default.nix b/modules/home/cli-apps/tmux/default.nix index a0fc588..b08cdfd 100644 --- a/modules/home/cli-apps/tmux/default.nix +++ b/modules/home/cli-apps/tmux/default.nix @@ -11,11 +11,14 @@ let in { options.metacfg.cli-apps.tmux = { - enable = mkEnableOption "Tmux"; + enable = mkOption { + type = types.bool; + default = true; + description = "Enable Tmux"; + }; }; config = mkIf cfg.enable { - home.packages = with pkgs; [ tmux ]; home.file.".tmux.conf".text = '' set -g mouse on '';