From 61239c0f2ba03b97469becec91fbd0d69c487a0e Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Tue, 6 May 2025 01:53:54 +0100 Subject: [PATCH] added the actual zellij option idk how i missed that --- home-manager/zellij.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/home-manager/zellij.nix b/home-manager/zellij.nix index f15fd10..300d10b 100644 --- a/home-manager/zellij.nix +++ b/home-manager/zellij.nix @@ -1,6 +1,8 @@ {...}: { - enable = true; - enableZshIntegration = true; - exitShellOnExit = true; - attachExistingSession = true; + zellij = { + enable = true; + enableZshIntegration = true; + exitShellOnExit = true; + attachExistingSession = true; + } }