3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

install: The list of services is now a plain list.

* gnu/system/install.scm (installation-services): Rename to...
(%installation-services): ... this.  Turn into a list instead of a thunk.
This commit is contained in:
Ludovic Courtès 2016-12-19 18:35:54 +01:00
parent acb5f7c3fc
commit 58b21e1e09
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -255,8 +255,8 @@ the user's target storage device rather than on the RAM disk."
(persistent? #f)
(max-database-size (* 5 (expt 2 20)))))) ;5 MiB
(define (installation-services)
"Return the list services for the installation image."
(define %installation-services
;; List of services of the installation system.
(let ((motd (plain-file "motd" "
Welcome to the installation of the Guix System Distribution!
@ -377,8 +377,7 @@ Use Alt-F2 for documentation.
(home-directory "/home/guest"))))
(issue %issue)
(services (installation-services))
(services %installation-services)
;; We don't need setuid programs so pass the empty list so we don't pull
;; additional programs here.