Merge pull request #71013 from worldofpeace/pulseaudio-no-autospawn

nixos/pulseaudio: don't autospawn ever
This commit is contained in:
Florian Klink
2019-10-12 14:36:49 +02:00
committed by GitHub

View File

@@ -51,8 +51,7 @@ let
# that we can disable the autospawn feature in programs that
# are built with PulseAudio support (like KDE).
clientConf = writeText "client.conf" ''
autospawn=${if nonSystemWide then "yes" else "no"}
${optionalString nonSystemWide "daemon-binary=${binary}"}
autospawn=no
${cfg.extraClientConf}
'';