From 2fee88f2813ad9fbcefc20e5bd39af336cf5b9f3 Mon Sep 17 00:00:00 2001 From: Florian Peter <4farlion@gmail.com> Date: Fri, 4 Jul 2025 14:28:53 +0100 Subject: [PATCH] fuzzel: apply iconTheme (#1497) Link: https://github.com/nix-community/stylix/pull/1497 Reviewed-by: awwpotato Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> --- modules/fuzzel/hm.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/fuzzel/hm.nix b/modules/fuzzel/hm.nix index dc84b6ca..89ff5d6e 100644 --- a/modules/fuzzel/hm.nix +++ b/modules/fuzzel/hm.nix @@ -32,5 +32,12 @@ mkTarget { }; } ) + ( + { polarity, iconTheme }: + { + programs.fuzzel.settings.main."icon-theme" = + if (polarity == "dark") then iconTheme.dark else iconTheme.light; + } + ) ]; }