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