diff options
Diffstat (limited to 'hm/shell')
| -rw-r--r-- | hm/shell/shell.nix | 1 | ||||
| -rw-r--r-- | hm/shell/zellij.nix | 14 |
2 files changed, 15 insertions, 0 deletions
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; + }; + }; +} |
