From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:38358) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iqK6J-0000I1-9U for guix-patches@gnu.org; Sat, 11 Jan 2020 11:59:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iqK6I-0004SW-7Y for guix-patches@gnu.org; Sat, 11 Jan 2020 11:59:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:50563) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iqK6I-0004Ru-3z for guix-patches@gnu.org; Sat, 11 Jan 2020 11:59:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iqK6I-0002QJ-4A for guix-patches@gnu.org; Sat, 11 Jan 2020 11:59:02 -0500 Subject: [bug#39061] [PATCH 2/6] services: pulseaudio-service-type: Honor /etc. Resent-Message-ID: From: Marius Bakke In-Reply-To: <20200110014823.10595-2-leo.prikler@student.tugraz.at> References: <87blrc1epy.fsf@devup.no> <20200110014823.10595-2-leo.prikler@student.tugraz.at> Date: Sat, 11 Jan 2020 17:57:56 +0100 Message-ID: <87tv52ylpn.fsf@devup.no> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Leo Prikler , 39061@debbugs.gnu.org Cc: 39053@debbugs.gnu.org --=-=-= Content-Type: text/plain Leo Prikler writes: > * gnu/services/sound (pulseaudio-environment): Add PULSE_CONFIG and > PULSE_CLIENTCONFIG. > --- > gnu/services/sound.scm | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/gnu/services/sound.scm b/gnu/services/sound.scm > index 307e62fd1b..6b2b345a44 100644 > --- a/gnu/services/sound.scm > +++ b/gnu/services/sound.scm > @@ -123,8 +123,10 @@ ctl.!default { > (define (pulseaudio-environment config) > ;; Define this variable in the global environment such that > ;; pulseaudio swh-plugins works. > - `(("LADSPA_PATH" > - . ,(file-append swh-plugins "/lib/ladspa")))) > + `(("LADSPA_PATH" . ,(file-append swh-plugins "/lib/ladspa")) > + ;; Define these variables, so that pulseaudio honors /etc. > + ("PULSE_CONFIG" . "/etc/pulse/daemon.conf") > + ("PULSE_CLIENTCONFIG" . "/etc/pulse/client.conf"))) I squashed this with the first patch. By the way, for future merge request, please open a single bug report and send all patches to NNNNN@debbugs.gnu.org. I've merged the bugs opened by this series. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAl4Z/pQACgkQoqBt8qM6 VPr65QgAibs8txfpQzOe7wBwdBG0otBy8u5wjlt9uRd+OJXYHbHmBN7b0LvCT8Sr 7v1h8sQIeqygaqBwsFBoBl90ZzKzrdDIrExaGXVnn3T287Pjrk2FYd/Yi1uWRU15 vHDG3DlLT3ep5VCAKkBnQplqx0o6OUvS1/Tp+W/iKhvn9yAxv61LcEEIcYg3Ve3r PWNpzJHNoNGd/u/HJWa3qdozT+MBk0aFhfMTWA2drwifhkxUjBJ52cgyGW+z5R5L m7Q5ftKLiox54fQSsNFuuNUGd4/IVkSgO5w02+orEAmRtedO/jajNlVLuqAFvhbu sh+LfOz6XC9dDGdS7H60aoikH+8wBA== =7qYN -----END PGP SIGNATURE----- --=-=-=--