From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:36726) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ipYL6-0005fd-2P for guix-patches@gnu.org; Thu, 09 Jan 2020 08:59:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ipYL1-00069o-MX for guix-patches@gnu.org; Thu, 09 Jan 2020 08:59:07 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:46013) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ipYL1-000693-J4 for guix-patches@gnu.org; Thu, 09 Jan 2020 08:59:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ipYL1-0005yh-IV for guix-patches@gnu.org; Thu, 09 Jan 2020 08:59:03 -0500 Subject: [bug#39054] [PATCH 2/3] services: pulseaudio-service-type: Honor /etc. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:33642) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ipYKI-0005Pv-Dq for guix-patches@gnu.org; Thu, 09 Jan 2020 08:58:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ipYKH-0003Xc-9E for guix-patches@gnu.org; Thu, 09 Jan 2020 08:58:18 -0500 Received: from mailrelay.tugraz.at ([129.27.2.202]:3007) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ipYKH-0003Sw-1K for guix-patches@gnu.org; Thu, 09 Jan 2020 08:58:17 -0500 Received: from localhost.localdomain (193-80-82-122.hdsl.highway.telekom.at [193.80.82.122]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 47tnkt0Lsqz1LgFg for ; Thu, 9 Jan 2020 14:58:13 +0100 (CET) From: Leo Prikler Date: Thu, 9 Jan 2020 14:57:45 +0100 Message-Id: <20200109135746.1993-3-leo.prikler@student.tugraz.at> In-Reply-To: <20200109135746.1993-1-leo.prikler@student.tugraz.at> References: <20200109135746.1993-1-leo.prikler@student.tugraz.at> 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: 39054@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 f01d958ce7..859aa9c16d 100644 --- a/gnu/services/sound.scm +++ b/gnu/services/sound.scm @@ -119,8 +119,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