summaryrefslogtreecommitdiff
path: root/gnu/installer.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2019-04-07 17:15:06 +0200
committerLudovic Courtès <ludo@gnu.org>2019-04-07 17:18:04 +0200
commit75988317b22efee2b2719e7d559fa9ff01a9db9a (patch)
tree942a784ba68be4c0a7f16582016514cff2c292d5 /gnu/installer.scm
parente8aa4e9511e500ae23439b653e0b5e0f78c31159 (diff)
installer: Generalize desktop environments to system services.
* gnu/installer/services.scm (<desktop-environment>): Rename to... (<system-service>): ... this. Add a 'type' field. (%desktop-environments): Rename to... (%system-services): ... this. (desktop-system-service?): New procedure. (desktop-environments->configuration): Rename to... (system-services->configuration): ... this. Determine the base list of services based on whether SERVICES contains at least one "desktop" service. * gnu/installer/newt/services.scm (run-desktop-environments-cbt-page): Adjust accordingly. * gnu/installer.scm (installer-steps): Likewise.
Diffstat (limited to 'gnu/installer.scm')
-rw-r--r--gnu/installer.scm3
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/installer.scm b/gnu/installer.scm
index 5694cef66f7..50e2e7d85e0 100644
--- a/gnu/installer.scm
+++ b/gnu/installer.scm
@@ -256,8 +256,7 @@ selected keymap."
256 (description (G_ "Services")) 256 (description (G_ "Services"))
257 (compute (lambda _ 257 (compute (lambda _
258 ((installer-services-page current-installer)))) 258 ((installer-services-page current-installer))))
259 (configuration-formatter 259 (configuration-formatter system-services->configuration))
260 desktop-environments->configuration))
261 260
262 (installer-step 261 (installer-step
263 (id 'final) 262 (id 'final)