diff --git a/home-manager/home.nix b/home-manager/home.nix index 764e48f..8602a9d 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -21,6 +21,7 @@ ./stylix.nix ./direnv.nix ./firefox.nix + ./zellij.nix ]; # States home manager version that config was originally compatible with, do not change without reading all patch notes since this version and altering as needed diff --git a/home-manager/zellij.nix b/home-manager/zellij.nix new file mode 100644 index 0000000..f15fd10 --- /dev/null +++ b/home-manager/zellij.nix @@ -0,0 +1,6 @@ +{...}: { + enable = true; + enableZshIntegration = true; + exitShellOnExit = true; + attachExistingSession = true; +}