From 649e10525e3cee5f866f8062255d47902e065885 Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Sat, 12 Jul 2025 15:28:42 +0800 Subject: [PATCH] fix: zellij - theme --- home/base/tui/zellij/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/home/base/tui/zellij/default.nix b/home/base/tui/zellij/default.nix index 4542a3bd..c60de7a7 100644 --- a/home/base/tui/zellij/default.nix +++ b/home/base/tui/zellij/default.nix @@ -7,6 +7,9 @@ in { enable = true; package = pkgs.zellij; }; + xdg.configFile."zellij/config.kdl".source = ./config.kdl; + # Disable catppuccin to avoid conflict with my non-nix config. + catppuccin.zellij.enable = false; # auto start zellij in nushell programs.nushell.extraConfig = '' @@ -30,6 +33,4 @@ in { # only works in bash/zsh, not nushell home.shellAliases = shellAliases; programs.nushell.shellAliases = shellAliases; - - xdg.configFile."zellij/config.kdl".source = ./config.kdl; }