summaryrefslogtreecommitdiff
path: root/hm/shell/zellij.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2026-04-12 23:47:47 +0200
committeradikro <adikro@disroot.org>2026-04-12 23:47:47 +0200
commitbf126b5e1ae5cbab3b62c00bbff614a23539e431 (patch)
treeb275c56596eaf3f5754cea30f04e84bbcc21e305 /hm/shell/zellij.nix
parent3ed184c48a1154a2548df807c8aaae7888e4792c (diff)
finalized client configs for tor, i2pd and yggdrasil
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;
+ };
+ };
+}