Stop caring about clobbering the VR configuration

...so that home manager can start on rebuild
This commit is contained in:
Chris (wolcen) Thompson 2025-09-24 10:45:46 -04:00
parent 931780c38f
commit 3e605c2964

View file

@ -78,25 +78,28 @@
# 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, ],
"jsonid" : "vrpathreg", "external_drivers" : null,
"log" : "jsonid" : "vrpathreg",
[ "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
''; }
'';
force = true;
}
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.
programs.home-manager.enable = true; programs.home-manager.enable = true;
} }