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

11 lines
331 B
Nix
Raw Normal View History

2020-05-27 13:20:08 +00:00
self: super:
2020-09-16 17:55:08 +00:00
let
2020-12-07 02:05:57 +00:00
unfree = import self.sources."${self.nixpkgs-channel}" { config.allowUnfree = true; };
unstableUnfree =
import self.sources.nixos-unstable { config.allowUnfree = true; };
2021-05-18 14:33:28 +00:00
in
{
2021-05-29 10:24:06 +00:00
inherit (unfree) discord factorio zoom-us skypeforlinux google-chrome minecraft teamviewer;
2021-05-29 08:33:53 +00:00
inherit (unstableUnfree) steam;
2020-12-07 02:05:57 +00:00
}