1
0
Fork 0
nixos-config/overlays/20-unfree.nix
2020-09-16 19:55:08 +02:00

8 lines
342 B
Nix

self: super:
let
unfree = import self.sources.nixpkgs { config.allowUnfree = true; };
unstableUnfree = import self.sources.unstable { config.allowUnfree = true; };
releaseUnfree =
import self.sources.nixpkgs-release { config.allowUnfree = true; };
in { inherit (unfree) discord factorio steam zoom-us skypeforlinux google-chrome; }