forked from nyanloutre/nixos-config
fix unfree predicate for 20.03
This commit is contained in:
parent
26f5a98f03
commit
12d95c1808
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ in
|
|||
];
|
||||
|
||||
nixpkgs.config.allowUnfree = false;
|
||||
nixpkgs.config.allowUnfreePredicate = (pkg: builtins.elem (builtins.parseDrvName pkg.pname).name [ "factorio-headless" "perl5.30.1-slimserver" "minecraft-server" ]);
|
||||
nixpkgs.config.allowUnfreePredicate = (pkg: builtins.elem pkg.pname or (builtins.parseDrvName pkg.name).name [ "factorio-headless" "perl5.30.1-slimserver" "minecraft-server" ]);
|
||||
|
||||
services.zfs = {
|
||||
autoSnapshot.enable = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue