fnott: set icon theme (#1873)

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

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
Reviewed-by: awwpotato <awwpotato@voidq.com>
This commit is contained in:
Karun Sandhu 2025-09-04 06:42:07 +02:00 committed by GitHub
parent e8cdb1e2ba
commit 584d9c57a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,5 +48,12 @@ mkTarget {
};
}
)
(
{ polarity, icons }:
{
services.fnott.settings.main."icon-theme" =
if (polarity == "dark") then icons.dark else icons.light;
}
)
];
}