feat(gaming): update gaming configuration

This commit is contained in:
Felix Schröter 2021-08-04 22:15:17 +02:00
parent 7a0f98d20e
commit 322ae93e35
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58
6 changed files with 40 additions and 40 deletions

View file

@ -9,4 +9,20 @@ let
else
[ package32 ] ++ extraPackages32;
};
in { home.packages = [ steam steam.run ]; }
in {
home.packages = [ steam steam.run ];
xdg.dataFile = {
# TODO doesn't show up in steam
proton-ge = let version = "6.12-GE-1";
in {
recursive = false;
source = builtins.fetchTarball {
url =
"https://github.com/GloriousEggroll/proton-ge-custom/releases/download/${version}/Proton-${version}.tar.gz";
sha256 = "0j3ca5qqvj294ax9xpxcm9s70vdkhk1sskn53hq3pcn3p9yr6phq";
};
target = "Steam/compatibilitytools.d/proton-ge-${version}";
};
};
}