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; + } + ) ]; }