diff options
Diffstat (limited to 'snowfall/modules/home/tools/tmux/default.nix')
| -rw-r--r-- | snowfall/modules/home/tools/tmux/default.nix | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/snowfall/modules/home/tools/tmux/default.nix b/snowfall/modules/home/tools/tmux/default.nix deleted file mode 100644 index 3f9b7a0..0000000 --- a/snowfall/modules/home/tools/tmux/default.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ options, config, lib, namespace, ... }: - -with lib; with lib.${namespace}; let - cfg = config.${namespace}.tools.tmux; -in { - options.${namespace}.tools.tmux = with types; { - enable = mkEnableOption "tmux"; - }; - - config = mkIf cfg.enable { - programs.tmux = { - enable = true; - }; - }; -} |