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
+12
View File
@@ -32,6 +32,18 @@ in
# Run WiVRn as a systemd service on startup # Run WiVRn as a systemd service on startup
autoStart = true; autoStart = true;
steam = {
enable = true;
importOXRRuntimes = 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.alvr = { programs.alvr = {
+14 -1
View File
@@ -1,17 +1,30 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
hardware.steam-hardware.enable = true;
programs.steam = { programs.steam = {
enable = true; enable = true;
gamescopeSession.enable = true; gamescopeSession.enable = true;
extest.enable = true;
extraCompatPackages = with pkgs; [ extraCompatPackages = with pkgs; [
proton-ge-bin proton-ge-bin
dwproton-bin
steam-play-none
]; ];
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.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.gamemode.enable = true;
programs.gamescope = { programs.gamescope = {
enable = true; enable = true;
capSysNice = true; capSysNice = true;
}; };
} }