nix/home-manager/stylix.nix

25 lines
558 B
Nix
Raw Normal View History

{ breezex-cursor, system, ... }:
2024-07-29 12:55:08 +02:00
{
stylix = {
enable = true;
image = ./wallpapers/suzume_door.png;
polarity = "dark";
base16Scheme = ./neovim_default_scheme.yaml;
# 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";
2024-08-02 16:12:03 +02:00
size = 24;
};
};
2024-08-02 16:12:03 +02:00
# fix cursor size for some apps
home.sessionVariables = {
XCURSOR_SIZE = 24;
};
2024-07-29 12:55:08 +02:00
}