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
commit 696d1d8a86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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}
'';