mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-26 10:25:19 +01:00
nongnu: steam: Preserve proxy environment variables and use regex for all vars.
* nongnu/packages/steam-client.scm (make-container-wrapper): Add proxy to preserved environment variables and use regex matching for all existing environment variables.
This commit is contained in:
parent
73dd7d8ecd
commit
80decf053a
1 changed files with 9 additions and 10 deletions
|
@ -317,16 +317,15 @@ in a sandboxed FHS environment."
|
|||
(xdg-runtime (getenv "XDG_RUNTIME_DIR"))
|
||||
(home (getenv "HOME"))
|
||||
(sandbox-home (string-append home "/" #$(ngc-sandbox-home container)))
|
||||
(preserved-env '("DBUS_SESSION_BUS_ADDRESS"
|
||||
"DISPLAY"
|
||||
"DRI_PRIME"
|
||||
"SDL_AUDIODRIVER"
|
||||
"STEAM_RUNTIME"
|
||||
"STEAM_RUNTIME_HEAVY"
|
||||
"STEAM_RUNTIME_PREFER_HOST_LIBRARIES"
|
||||
"XAUTHORITY"
|
||||
"XDG_DATA_HOME"
|
||||
"XDG_RUNTIME_DIR"))
|
||||
(preserved-env '("^DBUS_"
|
||||
"^DISPLAY$"
|
||||
"^DRI_PRIME$"
|
||||
"_PROXY$"
|
||||
"_proxy$"
|
||||
"^SDL_"
|
||||
"^STEAM_"
|
||||
"^XAUTHORITY$"
|
||||
"^XDG_"))
|
||||
(expose `("/dev/dri"
|
||||
"/dev/input" ; Needed for controller input.
|
||||
,@(exists-> "/etc/machine-id")
|
||||
|
|
Loading…
Reference in a new issue