nix/home-manager/stylix.nix
Khaïs COLIN dd6003556c stylix: fix wallpaper set error when not running under kde
Downsides:
this means that there will be no theming for KDE QT Apps

Also switch theme polarity to light
2024-07-29 13:20:49 +02:00

11 lines
257 B
Nix

{
stylix = {
enable = true;
image = ./wallpapers/suzume_door.png;
polarity = "light";
# fix wallpaper set error when not running under kde plasma
# see https://github.com/danth/stylix/issues/340
targets.kde.enable = false;
};
}