👉 Use correct pointer

This commit is contained in:
2025-01-06 21:18:45 +01:00
parent 533ff49808
commit e223999ae1
3 changed files with 18 additions and 21 deletions

View File

@ -1,17 +1,21 @@
{ pkgs, ... }:
{
# TODO Not working correctly, see https://github.com/hyprwm/hyprcursor/issues/19
home.packages = with pkgs; [
hyprcursor
];
home = {
packages = with pkgs; [
hyprcursor
];
# TODO remove in favour of hyprland flake?
home.file = {
".local/share/icons/rose-pine-hyprcursor/manifest.hl".source = ./manifest.hl;
".local/share/icons/rose-pine-hyprcursor/hyprcursors" = {
source = ./hyprcursors;
recursive = true;
file = {
".local/share/icons/rose-pine-hyprcursor/manifest.hl".source = ./manifest.hl;
".local/share/icons/rose-pine-hyprcursor/hyprcursors" = {
source = ./hyprcursors;
recursive = true;
};
};
};
wayland.windowManager.hyprland.settings.exec-once = [
"hyprctl setcursor $HYPRCURSOR_THEME $HYPRCURSOR_SIZE" # Set cursor
];
}