From 0b1c74693cb475c27bff2594d0823b78a5f2764a Mon Sep 17 00:00:00 2001 From: caem Date: Sun, 2 Feb 2025 19:11:59 +0100 Subject: [PATCH] steam: Fix the steam library being inaccesible to steam --- overlays/steam.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/overlays/steam.nix b/overlays/steam.nix index 6c8e345..44893af 100644 --- a/overlays/steam.nix +++ b/overlays/steam.nix @@ -2,11 +2,12 @@ steam = prev.steam.override { extraBwrapArgs = [ "--bind $HOME/.local/share/steam_home $HOME" + "--bind $HOME/mounts $HOME/mounts" "--unsetenv XDG_CACHE_HOME" "--unsetenv XDG_CONFIG_HOME" "--unsetenv XDG_DATA_HOME" "--unsetenv XDG_STATE_HOME" - ]; + ]; }; }