From 3be1807fa4afa0b987ce1eac1e5a0e64c12323b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adomas=20Jatu=C5=BEis?= Date: Sun, 13 Oct 2024 13:26:54 +0300 Subject: [PATCH] workaround for https://github.com/ValveSoftware/gamescope/issues/163 --- nixos/steam.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/steam.nix b/nixos/steam.nix index b8871c0b..bde3c2d9 100644 --- a/nixos/steam.nix +++ b/nixos/steam.nix @@ -18,7 +18,7 @@ mangohud (writeShellScriptBin "launch-gamescope" '' (sleep 1; pgrep gamescope| xargs renice -n -11 -p)& - exec gamescope "$@" + exec env LD_PRELOAD="" gamescope "$@" '') ]; };