From b2a963dc29fbbb57b193bca7cf3ab2b78d5e291e Mon Sep 17 00:00:00 2001 From: Thomas Syms Date: Tue, 24 Sep 2024 13:11:18 -0300 Subject: [PATCH] Added zellij --- home/shell/default.nix | 1 + home/shell/zellij.nix | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 home/shell/zellij.nix diff --git a/home/shell/default.nix b/home/shell/default.nix index 03832ac..7eb3a45 100644 --- a/home/shell/default.nix +++ b/home/shell/default.nix @@ -17,6 +17,7 @@ ./rip.nix ./starship.nix ./tldr.nix + ./zellij.nix ./zoxide.nix ./zsh ]; diff --git a/home/shell/zellij.nix b/home/shell/zellij.nix new file mode 100644 index 0000000..2018ce8 --- /dev/null +++ b/home/shell/zellij.nix @@ -0,0 +1,8 @@ +{...}: { + programs.zellij = { + enable = true; + enableBashIntegration = true; + enableFishIntegration = true; + enableZshIntegration = true; + }; +}