fuzzel: fix icon theme not being set correctly (#1761)

Fixes: 1021b7d732 ("stylix: simplify API by renaming stylix.iconTheme option to stylix.icons")
Link: https://github.com/nix-community/stylix/pull/1740
Link: https://github.com/nix-community/stylix/pull/1761

Reviewed-by: awwpotato <awwpotato@voidq.com>
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
NAHO 2025-07-26 18:09:12 +02:00 committed by GitHub
commit 602de220be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -35,7 +35,7 @@ mkTarget {
(
{ polarity, icons }:
{
programs.fuzzel.settings.main."icons" =
programs.fuzzel.settings.main."icon-theme" =
if (polarity == "dark") then icons.dark else icons.light;
}
)

View file

@ -1,5 +1,6 @@
{ lib, ... }:
{
name = "Fuzzel";
homepage = "https://codeberg.org/dnkl/fuzzel";
maintainers = [ ];
maintainers = [ lib.maintainers.MrSom3body ];
}