From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH 8/9] services: Add sddm service. Date: Mon, 05 Sep 2016 10:39:58 +0200 Message-ID: <8760qapwo1.fsf@gnu.org> References: <20160901155711.7388-1-david@craven.ch> <20160901155711.7388-8-david@craven.ch> <87zinqsd2a.fsf@member.fsf.org> <87wpitm7m3.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50672) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bgpRm-00045s-On for guix-devel@gnu.org; Mon, 05 Sep 2016 04:40:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bgpRi-0005S5-LI for guix-devel@gnu.org; Mon, 05 Sep 2016 04:40:05 -0400 In-Reply-To: (David Craven's message of "Sat, 3 Sep 2016 15:36:22 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: David Craven Cc: guix-devel David Craven skribis: >> + (sddm sddm-configuration-sddm >> + (default sddm)) > >> + (faces-directory sddm-configuration-faces-directory >> + (default #~(string-append #$sddm "/share/sddm= /faces"))) > > Is sddm bound to the above sddm? It is bound to the global variable =E2=80=98sddm=E2=80=99, which is not wha= t you want here. So maybe you should have: (faces-directory =E2=80=A6 (default #f)) and then down the line: (or (sddm-configuration-faces-directory config) #~(string-append #$(sddm-configuration-sddm config) "/share/sddm/faces")) Ludo=E2=80=99.