Files
nixos-config/home/common/programs/hyprland/cursor.nix
T
2026-02-17 11:28:12 +00:00

26 lines
514 B
Nix

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