summaryrefslogtreecommitdiff
path: root/hm/shell/zellij.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hm/shell/zellij.nix')
-rw-r--r--hm/shell/zellij.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/hm/shell/zellij.nix b/hm/shell/zellij.nix
new file mode 100644
index 0000000..333d554
--- /dev/null
+++ b/hm/shell/zellij.nix
@@ -0,0 +1,14 @@
+{ lib, config, ... }:
+let
+ cfg = config.hm.shell.zellij;
+in
+{
+ options.hm.shell.zellij.enable = lib.mkEnableOption "enables zellij terminal multiplexer";
+
+ config = lib.mkIf cfg.enable {
+ programs.zellij = {
+ enable = true;
+ # enableFishIntegration = true;
+ };
+ };
+}