David Craven <da...@craven.ch> 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’.