aboutsummaryrefslogtreecommitdiff
path: root/modules/home-manager/tmux.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home-manager/tmux.nix')
-rw-r--r--modules/home-manager/tmux.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/modules/home-manager/tmux.nix b/modules/home-manager/tmux.nix
deleted file mode 100644
index c4bfefc..0000000
--- a/modules/home-manager/tmux.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-let
- cfg = config.tmux;
-in {
- options.tmux.enable = lib.mkEnableOption "Enable and configure Tmux";
-
- config = lib.mkIf cfg.enable {
- programs.tmux = {
- enable = true;
- };
- };
-}
-