about summary refs log tree commit diff
path: root/pkgs/games/steam
diff options
context:
space:
mode:
authorJeff Huffman <tejing@tejing.com>2023-12-09 00:31:45 -0500
committerJonathan Ringer <jonringer@users.noreply.github.com>2023-12-13 23:33:05 -0800
commitaa9d4729cbc99dabacb50e3994dcefb3ea0f7447 (patch)
treeb099bb82dcec4c8ccddf59922ea0a76ddc8885ba /pkgs/games/steam
parentc3a429feac44321b8e3f98b64bb08c90e6bbada8 (diff)
steam: unset GIO_EXTRA_MODULES to supress errors
Diffstat (limited to 'pkgs/games/steam')
-rw-r--r--pkgs/games/steam/fhsenv.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/games/steam/fhsenv.nix b/pkgs/games/steam/fhsenv.nix
index b3ef45fd437ba..7bcc7976f1f92 100644
--- a/pkgs/games/steam/fhsenv.nix
+++ b/pkgs/games/steam/fhsenv.nix
@@ -60,7 +60,10 @@ let
     fi
   '';
 
-  envScript = lib.toShellVars extraEnv;
+  envScript = ''
+    # prevents various error messages
+    unset GIO_EXTRA_MODULES
+  '' + lib.toShellVars extraEnv;
 
 in buildFHSEnv rec {
   name = "steam";