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

13 lines
384 B
Nix
Raw Normal View History

2022-03-08 01:42:46 +00:00
self: super: let
2022-11-30 22:52:46 +00:00
unfree = import self.sources."${self.nixpkgs-channel}" {
config = {
allowUnfree = true;
android_sdk.accept_license = true;
};
};
2022-03-08 01:42:46 +00:00
unstableUnfree = import self.sources.nixos-unstable {config.allowUnfree = true;};
in {
2022-11-30 22:52:46 +00:00
inherit (unfree) discord zoom-us minecraft teamviewer steam androidsdk_9_0;
2021-12-09 19:01:13 +00:00
inherit (unstableUnfree) minecraft-server;
2020-12-07 02:05:57 +00:00
}