nixos-config/overlays/steam.nix

18 lines
427 B
Nix
Raw Normal View History

2018-06-09 13:23:26 +02:00
self: super:
2018-09-29 09:49:38 +02:00
let
baseConfig = {
allowUnfree = true;
};
nixpkgs-steam-56 = import (super.fetchFromGitHub {
owner = "nyanloutre";
repo = "nixpkgs";
rev = "7af3a85d8d1a91b57b6cdee0b2e5d88981f310fa";
sha256 = "1rcd0nw8k1pcp80zm8kyhk288dj5ifmxhpacm1wi5hfnhw194w1g";
}) {config = baseConfig;};
in
2018-06-09 13:23:26 +02:00
{
2018-09-29 09:49:38 +02:00
steam_primus = nixpkgs-steam-56.steamPackages.steam-chrootenv.override {
2018-06-09 13:23:26 +02:00
withPrimus = true;
};
}