nixos/pulseaudio: don't autospawn ever

This is long been superseded by socket activation.
Additonally using autospawn nudges some unpleasant
GDM related issues.
This commit is contained in:
worldofpeace 2019-10-11 20:02:25 -04:00
parent c0d5833156
commit 361b5f7f65

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