22 lines
458 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
2025-01-06 21:18:45 +01:00
home = {
packages = with pkgs; [
hyprcursor
];
2025-01-06 21:18:45 +01:00
file = {
".local/share/icons/rose-pine-hyprcursor/manifest.hl".source = ./manifest.hl;
".local/share/icons/rose-pine-hyprcursor/hyprcursors" = {
source = ./hyprcursors;
recursive = true;
};
};
};
2025-01-06 21:18:45 +01:00
wayland.windowManager.hyprland.settings.exec-once = [
"hyprctl setcursor $HYPRCURSOR_THEME $HYPRCURSOR_SIZE" # Set cursor
];
}