From bf126b5e1ae5cbab3b62c00bbff614a23539e431 Mon Sep 17 00:00:00 2001 From: adikro Date: Sun, 12 Apr 2026 23:47:47 +0200 Subject: finalized client configs for tor, i2pd and yggdrasil --- hm/shell/shell.nix | 1 + hm/shell/zellij.nix | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 hm/shell/zellij.nix (limited to 'hm/shell') diff --git a/hm/shell/shell.nix b/hm/shell/shell.nix index a1ca34d..b394626 100644 --- a/hm/shell/shell.nix +++ b/hm/shell/shell.nix @@ -5,5 +5,6 @@ ./fish.nix ./foot.nix ./starship.nix + ./zellij.nix ]; } 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; + }; + }; +} -- cgit v1.3