Martin Berg Alstad a2f141a290
🔐 Enter hyprland.conf
Moved hyprland config into NixOS configuration.

Moved hyprcursor under hyprland config.
2024-12-29 21:49:16 +01:00

18 lines
426 B
Nix

{ pkgs, ... }:
{
# TODO Not working correctly, see https://github.com/hyprwm/hyprcursor/issues/19
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;
};
};
}