From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:38647) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ipjR5-0006sd-Sf for guix-patches@gnu.org; Thu, 09 Jan 2020 20:50:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ipjR4-0002D5-Mh for guix-patches@gnu.org; Thu, 09 Jan 2020 20:50:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:47420) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ipjR4-0002Bk-IN for guix-patches@gnu.org; Thu, 09 Jan 2020 20:50:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ipjR4-0003jM-GE for guix-patches@gnu.org; Thu, 09 Jan 2020 20:50:02 -0500 Subject: [bug#39061] [PATCH 2/6] services: pulseaudio-service-type: Honor /etc. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:36554) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ipjQX-0006Mw-TB for guix-patches@gnu.org; Thu, 09 Jan 2020 20:49:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ipjQW-0007T5-BW for guix-patches@gnu.org; Thu, 09 Jan 2020 20:49:29 -0500 Received: from mailrelay.tugraz.at ([129.27.2.202]:27053) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ipjQW-0007N0-1U for guix-patches@gnu.org; Thu, 09 Jan 2020 20:49:28 -0500 From: Leo Prikler Date: Fri, 10 Jan 2020 02:48:20 +0100 Message-Id: <20200110014823.10595-2-leo.prikler@student.tugraz.at> In-Reply-To: <87blrc1epy.fsf@devup.no> References: <87blrc1epy.fsf@devup.no> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: 39061@debbugs.gnu.org Cc: 39053@debbugs.gnu.org * 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"))) =20 (define (pulseaudio-conf-entry arg) (match arg --=20 2.24.1