Commit 2f21dbc

HPCesia <me@hpcesia.com>
2026-04-05 12:34:18
fix: zellij theme
See https://github.com/nix-community/stylix/issues/143#issuecomment-4183185049
1 parent 58fd136
Changed files (1)
modules
core
modules/core/tools/zellij.nix
@@ -1,11 +1,15 @@
 {
-  flake.modules.homeManager.core = _: {
+  flake.modules.homeManager.core = {config, ...}: {
     programs.zellij = {
       enable = true;
       settings = {
         show_startup_tips = false;
         show_release_notes = false;
         default_shell = "fish";
+        # Fix zellij not finding the default theme
+        # See https://github.com/nix-community/stylix/issues/143#issuecomment-4183185049
+        # TODO: Remove this when the issue is fixed
+        theme_dir = "${config.xdg.configHome}/zellij/themes";
       };
     };
   };