steam proton additions + tbb vr fixes

This commit is contained in:
k3t
2026-07-11 04:29:45 -06:00
parent 3a73e7fa4e
commit 01914cbc1f
2 changed files with 26 additions and 1 deletions
+14 -1
View File
@@ -1,17 +1,30 @@
{ pkgs, ... }:
{
hardware.steam-hardware.enable = true;
programs.steam = {
enable = true;
gamescopeSession.enable = true;
extest.enable = true;
extraCompatPackages = with pkgs; [
proton-ge-bin
dwproton-bin
steam-play-none
];
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
package = pkgs.steam.override {
extraProfile = ''
# Allows Monado/WiVRn to be used
export PRESSURE_VESSEL_IMPORT_OPENXR_1_RUNTIMES=1
# Fixes timezones on VRChat
unset TZ
'';
};
};
programs.gamemode.enable = true;
programs.gamescope = {
enable = true;
capSysNice = true;
};
}
}