1
0
Fork 0
nixos-config/overlays/20-unfree.nix
2021-05-29 12:24:06 +02:00

11 lines
331 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 zoom-us skypeforlinux google-chrome minecraft teamviewer;
inherit (unstableUnfree) steam;
}