Disable VR-related settings

This commit is contained in:
Chris (wolcen) Thompson 2025-06-01 12:45:58 -04:00
parent a072873cc3
commit fa636e3eaf
2 changed files with 28 additions and 28 deletions

View file

@ -271,8 +271,8 @@
lutris # game launcher (EA/Humble/Ubi++) lutris # game launcher (EA/Humble/Ubi++)
cruft # python-based template processor cruft # python-based template processor
nmap # network mapping/scanning tool nmap # network mapping/scanning tool
basalt-monado # tracking for VR # basalt-monado # tracking for VR
opencomposite # compatibility layer for VR # opencomposite # compatibility layer for VR
# why did these two disappear??? # why did these two disappear???
usbutils # provide lsusb, etc. usbutils # provide lsusb, etc.
pciutils # provide lspci, etc. pciutils # provide lspci, etc.
@ -440,11 +440,11 @@
}; };
# VR # VR
#Commmand: `renice -20 -p $(pgrep monado)` may help w/issues #Commmand: `renice -20 -p $(pgrep monado)` may help w/issues
services.monado = { # services.monado = {
enable = true; # enable = true;
defaultRuntime = true; # Register as default OpenXR runtime # defaultRuntime = true; # Register as default OpenXR runtime
forceDefaultRuntime = true; # Register as default OpenXR runtime for each user (remove home-manager file) # forceDefaultRuntime = true; # Register as default OpenXR runtime for each user (remove home-manager file)
}; # };
#systemd.user.services.monado.environment = { #systemd.user.services.monado.environment = {
# WMR_HANDTRACKING = "0"; # Enable for hand tracking # WMR_HANDTRACKING = "0"; # Enable for hand tracking
# XRT_PRINT_OPTIONS = "1"; # Enable printing env vars set/available # XRT_PRINT_OPTIONS = "1"; # Enable printing env vars set/available

View file

@ -73,30 +73,30 @@
# EDITOR = "emacs"; # EDITOR = "emacs";
}; };
# For Monado: # For Monado:
xdg.configFile."openxr/1/active_runtime.json".source = "${pkgs.monado}/share/openxr/1/openxr_monado.json"; # xdg.configFile."openxr/1/active_runtime.json".source = "${pkgs.monado}/share/openxr/1/openxr_monado.json";
# For WiVRn: # For WiVRn:
#xdg.configFile."openxr/1/active_runtime.json".source = "${pkgs.wivrn}/share/openxr/1/openxr_wivrn.json"; # xdg.configFile."openxr/1/active_runtime.json".source = "${pkgs.wivrn}/share/openxr/1/openxr_wivrn.json";
xdg.configFile."openvr/openvrpaths.vrpath".text = '' # xdg.configFile."openvr/openvrpaths.vrpath".text = ''
{ # {
"config" : # "config" :
[ # [
"${config.xdg.dataHome}/Steam/config" # "${config.xdg.dataHome}/Steam/config"
], # ],
"external_drivers" : null, # "external_drivers" : null,
"jsonid" : "vrpathreg", # "jsonid" : "vrpathreg",
"log" : # "log" :
[ # [
"${config.xdg.dataHome}/Steam/logs" # "${config.xdg.dataHome}/Steam/logs"
], # ],
"runtime" : # "runtime" :
[ # [
"${pkgs.opencomposite}/lib/opencomposite" # "${pkgs.opencomposite}/lib/opencomposite"
], # ],
"version" : 1 # "version" : 1
} # }
''; # '';
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.
programs.home-manager.enable = true; programs.home-manager.enable = true;
} }