fuzzel: apply iconTheme (#1497)

Link: https://github.com/nix-community/stylix/pull/1497

Reviewed-by: awwpotato <awwpotato@voidq.com>
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
Florian Peter 2025-07-04 14:28:53 +01:00 committed by GitHub
parent 825d79112f
commit 2fee88f281
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,5 +32,12 @@ mkTarget {
};
}
)
(
{ polarity, iconTheme }:
{
programs.fuzzel.settings.main."icon-theme" =
if (polarity == "dark") then iconTheme.dark else iconTheme.light;
}
)
];
}