fix(home): Fix iconTheme settings

This commit is contained in:
punkfairie 2025-03-02 10:54:23 -08:00
parent 0c2968e009
commit 62784d39b7
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
3 changed files with 22 additions and 1 deletions

View file

@ -25,10 +25,15 @@ in {
stylix = { stylix = {
iconTheme = { iconTheme = {
package = pkgs.kora-icon-theme; package = pkgs.kora-icon-theme;
name = "kora"; dark = "kora";
light = "kora-light-panel";
}; };
fonts.sizes.terminal = lib.mkIf (is-darwin system) 14; fonts.sizes.terminal = lib.mkIf (is-darwin system) 14;
}; };
home.packages = with pkgs; [
kora-icon-theme
];
}; };
} }

View file

@ -14,6 +14,14 @@ in {
enable = true; enable = true;
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc"; gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
iconTheme = with config.stylix.iconTheme; {
name =
if config.lib.stylix.colors.variant == "dark"
then dark
else light;
inherit package;
};
}; };
}; };
} }

View file

@ -11,6 +11,14 @@ in {
services.dunst = { services.dunst = {
enable = true; enable = true;
iconTheme = with config.stylix.iconTheme; {
name =
if config.lib.stylix.colors.variant == "dark"
then dark
else light;
inherit package;
};
settings = { settings = {
global = with config.stylix.fonts; { global = with config.stylix.fonts; {
monitor = 0; monitor = 0;