fix(home): cfg.package -> cfg.icons.package
This commit is contained in:
parent
c0b8dbb3e4
commit
b05a8fbb75
1 changed files with 2 additions and 2 deletions
|
@ -139,14 +139,14 @@ in
|
|||
gtk = mkIf config.gtk.enable (mkDefault {
|
||||
iconTheme = {
|
||||
inherit (cfg.icons) name;
|
||||
package = mkIf (cfg.icons.package != null) cfg.package;
|
||||
package = mkIf (cfg.icons.package != null) cfg.icons.package;
|
||||
};
|
||||
});
|
||||
|
||||
services.dunst = mkIf config.services.dunst.enable (mkDefault {
|
||||
iconTheme = {
|
||||
inherit (cfg.icons) name;
|
||||
package = mkIf (cfg.icons.package != null) cfg.package;
|
||||
package = mkIf (cfg.icons.package != null) cfg.icons.package;
|
||||
};
|
||||
});
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue