17 lines
402 B
Nix
17 lines
402 B
Nix
{ breezex-cursor, system, ... }:
|
|
{
|
|
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;
|
|
|
|
cursor = {
|
|
package = breezex-cursor.packages.${system}.default;
|
|
name = "BreezeX-Light";
|
|
};
|
|
};
|
|
}
|