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

13 lines
384 B
Nix

self: super: let
unfree = import self.sources."${self.nixpkgs-channel}" {
config = {
allowUnfree = true;
android_sdk.accept_license = true;
};
};
unstableUnfree = import self.sources.nixos-unstable {config.allowUnfree = true;};
in {
inherit (unfree) discord zoom-us minecraft teamviewer steam androidsdk_9_0;
inherit (unstableUnfree) minecraft-server;
}