From b05a8fbb759927a9f06f7db7b7ccf3f13d6777c7 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sat, 16 Nov 2024 23:58:06 -0800 Subject: [PATCH] fix(home): cfg.package -> cfg.icons.package --- modules/home/options/theme/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/home/options/theme/default.nix b/modules/home/options/theme/default.nix index 2a01f69..3d2da43 100644 --- a/modules/home/options/theme/default.nix +++ b/modules/home/options/theme/default.nix @@ -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; }; }); })