Commit 2f21dbc
Changed files (1)
modules
core
tools
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";
};
};
};