installer: Use 'append' and 'list' instead of 'cons*'.
* gnu/installer/services.scm (system-services->configuration): Use 'append' and 'list' instead of 'cons*'.
This commit is contained in:
parent
469e56b4af
commit
8d75e20e4b
|
@ -102,13 +102,13 @@
|
|||
'%base-services)))
|
||||
(if (null? snippets)
|
||||
`((services ,base))
|
||||
`((services (cons* ,@snippets
|
||||
|
||||
,@(if desktop?
|
||||
;; XXX: Assume 'keyboard-layout' is in scope.
|
||||
'((set-xorg-configuration
|
||||
(xorg-configuration
|
||||
(keyboard-layout keyboard-layout))))
|
||||
'())
|
||||
`((services (append (list ,@snippets
|
||||
|
||||
,@(if desktop?
|
||||
;; XXX: Assume 'keyboard-layout' is in
|
||||
;; scope.
|
||||
'((set-xorg-configuration
|
||||
(xorg-configuration
|
||||
(keyboard-layout keyboard-layout))))
|
||||
'()))
|
||||
,base))))))
|
||||
|
|
Loading…
Reference in New Issue