flake/darwin/profiles/common/core/anti-features.nix

9 lines
165 B
Nix
Raw Normal View History

{lib, ...}: {
# Allow unfree applications
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"spotify"
"keka"
];
}