fix(home): Fix iconTheme settings
This commit is contained in:
parent
0c2968e009
commit
62784d39b7
3 changed files with 22 additions and 1 deletions
|
@ -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
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue