1
0
Fork 0
nixos-config/overlays/20-unfree.nix
2020-07-07 17:40:43 +02:00

8 lines
221 B
Nix

self: super:
if super.config.allowUnfree or false then
{ }
else {
unfree = import self.sources.nixpkgs { config.allowUnfree = true; };
unstableUnfree = import self.sources.unstable { config.allowUnfree = true; };
}