diff options
| author | James Smith <jsubuntuxp@disroot.org> | 2025-11-23 21:46:31 -0700 |
|---|---|---|
| committer | Hilton Chain <hako@ultrarare.space> | 2026-01-05 18:46:17 +0800 |
| commit | 24783741711dc7ebefbb7e5921eefe3b2e17a6dd (patch) | |
| tree | 4f25675f8c623f8a080f968397575fd05d57d06c | |
| parent | e3643ae5bebb03185933fef4ccf07ee20b29c9cb (diff) | |
nonguix: multiarch-container: Allow adding SteamVR drivers to FHS container.
* nonguix/multiarch-container.scm (make-internal-script): Adds symlinks of
SteamVR drivers to FHS container.
Signed-off-by: Hilton Chain <hako@ultrarare.space>
| -rw-r--r-- | nonguix/multiarch-container.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/nonguix/multiarch-container.scm b/nonguix/multiarch-container.scm index 936767f..b01a4e2 100644 --- a/nonguix/multiarch-container.scm +++ b/nonguix/multiarch-container.scm @@ -544,7 +544,13 @@ application." ((,union64 "share/drirc.d") . "/usr/share/drirc.d") ((,union64 "share/fonts") . "/usr/share/fonts") ((,union64 "share/fonts") . "/run/current-system/profile/share/fonts") - ((,union64 "etc/fonts") . "/etc/fonts"))) + ((,union64 "etc/fonts") . "/etc/fonts") + ;; Expose Monado and OpenHMD SteamVR drivers in a predictable + ;; path. This is to make it easier to symlink SteamVR drivers + ;; if desired. + ;; TODO: Only expose the path if it actually exists? + ((,union64 "share/steamvr-monado") . "/usr/share/steamvr-monado") + ((,union64 "share/steamvr-openhmd") . "/usr/share/steamvr-openhmd"))) (for-each (cut file-symlink <> "/usr/share/egl/egl_external_platform.d") (append-map |
