1
0
Fork 0
nixos-config/overlays/20-unfree.nix
2021-05-18 16:33:28 +02:00

10 lines
292 B
Nix

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