diff options
| author | adikro <adikro@disroot.org> | 2026-04-12 23:47:47 +0200 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2026-04-12 23:47:47 +0200 |
| commit | bf126b5e1ae5cbab3b62c00bbff614a23539e431 (patch) | |
| tree | b275c56596eaf3f5754cea30f04e84bbcc21e305 /hm/shell/zellij.nix | |
| parent | 3ed184c48a1154a2548df807c8aaae7888e4792c (diff) | |
finalized client configs for tor, i2pd and yggdrasil
Diffstat (limited to 'hm/shell/zellij.nix')
| -rw-r--r-- | hm/shell/zellij.nix | 14 |
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; + }; + }; +} |
