añade whitelist de unfree packages

This commit is contained in:
Fabián Montero 2022-11-25 19:07:18 -06:00
parent dde6cb493a
commit b207e032bb
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{pkgs, config, lib, ...} :
with lib;
{
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"vmware-horizon-client"
];
}

View file

@ -8,6 +8,7 @@ with lib;
./isolation.nix
./path.nix
./systemd
./allowUnfreeWhitelist.nix
];
nixpkgs.overlays = [ self.overlay ];