Files
os/host/common/optional/desktop/hyprland/cursor.nix
2025-12-22 15:59:25 -05:00

11 lines
194 B
Nix

{ pkgs, lib, ... }:
{
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"apple_cursor"
];
environment.systemPackages = with pkgs; [
apple-cursor
];
}