1
0
Fork 0
nixos-config/overlays/20-unfree.nix

9 lines
307 B
Nix
Raw Normal View History

2020-05-27 13:20:08 +00:00
self: super:
if super.config.allowUnfree or false then
{ }
else {
unfree = import self.sources.nixpkgs { config.allowUnfree = true; };
2020-07-07 15:40:36 +00:00
unstableUnfree = import self.sources.unstable { config.allowUnfree = true; };
2020-09-15 21:07:15 +00:00
releaseUnfree = import self.sources.nixpkgs-release { config.allowUnfree = true; };
2020-05-27 13:20:08 +00:00
}