2024-12-29 10:56:58 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2025-01-06 21:18:45 +01:00
|
|
|
home = {
|
|
|
|
packages = with pkgs; [
|
|
|
|
hyprcursor
|
|
|
|
];
|
2024-12-29 10:56:58 +01:00
|
|
|
|
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;
|
|
|
|
};
|
2024-12-29 10:56:58 +01:00
|
|
|
};
|
|
|
|
};
|
2025-01-06 21:18:45 +01:00
|
|
|
|
|
|
|
wayland.windowManager.hyprland.settings.exec-once = [
|
|
|
|
"hyprctl setcursor $HYPRCURSOR_THEME $HYPRCURSOR_SIZE" # Set cursor
|
|
|
|
];
|
2024-12-29 10:56:58 +01:00
|
|
|
}
|