From bd85f36dda9127cf1f77438bf70b9f4984fd680b Mon Sep 17 00:00:00 2001 From: Toast Date: Mon, 28 Aug 2023 16:34:19 +0200 Subject: [PATCH] Steam: only enable pipewire's alsa support if it's used as the sound server --- roles/gaming/steam.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/gaming/steam.nix b/roles/gaming/steam.nix index 1c71901..27a1a33 100644 --- a/roles/gaming/steam.nix +++ b/roles/gaming/steam.nix @@ -7,5 +7,5 @@ remotePlay.openFirewall = true; }; # Some linux native games (rise of the tomb raider) use alsa for sound - services.pipewire.alsa.enable = true; + services.pipewire.alsa.enable = if config.services.pipewire.pulse.enable == true then true else false; }