Files
nixos-config/home/common/programs/hyprland/cursor.nix
T
Miguel Palhas c9f554e276 yazi updates
2026-03-03 10:43:56 +00:00

27 lines
588 B
Nix

{ pkgs, config, inputs, ... }:
let
nordzy-cursors = pkgs.callPackage ../../../../pkgs/nordzy-cursors/package.nix { };
cursorSize = config.custom.hyprland.cursorSize;
in
{
home.packages = [
nordzy-cursors
];
home.sessionVariables = {
HYPRCURSOR_THEME = "Nordzy-cursors"; # Dark variant (default)
HYPRCURSOR_SIZE = cursorSize;
XCURSOR_THEME = "Nordzy-cursors";
XCURSOR_SIZE = cursorSize;
};
dconf = {
enable = true;
# settings = {
# "org/gnome/desktop/interface" = {
# cursor-theme = "BreezeX-RosePine-Linux";
# };
# };
};
}