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

8 lines
342 B
Nix
Raw Normal View History

2020-05-27 13:20:08 +00:00
self: super:
2020-09-16 17:55:08 +00:00
let
2020-05-27 13:20:08 +00:00
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-16 17:55:08 +00:00
releaseUnfree =
import self.sources.nixpkgs-release { config.allowUnfree = true; };
in { inherit (unfree) discord factorio steam zoom-us skypeforlinux google-chrome; }