guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 8/9] services: Add sddm service.


From: Ludovic Courtès
Subject: Re: [PATCH 8/9] services: Add sddm service.
Date: Mon, 05 Sep 2016 10:39:58 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux)

David Craven <address@hidden> 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 ‘sddm’, which is not what you want
here.

So maybe you should have:

  (faces-directory … (default #f))

and then down the line:

  (or (sddm-configuration-faces-directory config)
      #~(string-append #$(sddm-configuration-sddm config)
                       "/share/sddm/faces"))

Ludo’.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]