Revert "services: 'mingetty-service' no longer takes monadic values."
[jackhill/guix/guix.git] / gnu / services / desktop.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2015 Andy Wingo <wingo@igalia.com>
4 ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
5 ;;;
6 ;;; This file is part of GNU Guix.
7 ;;;
8 ;;; GNU Guix is free software; you can redistribute it and/or modify it
9 ;;; under the terms of the GNU General Public License as published by
10 ;;; the Free Software Foundation; either version 3 of the License, or (at
11 ;;; your option) any later version.
12 ;;;
13 ;;; GNU Guix is distributed in the hope that it will be useful, but
14 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;;; GNU General Public License for more details.
17 ;;;
18 ;;; You should have received a copy of the GNU General Public License
19 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
20
21 (define-module (gnu services desktop)
22 #:use-module (gnu services)
23 #:use-module (gnu services base)
24 #:use-module (gnu services avahi)
25 #:use-module (gnu services xorg)
26 #:use-module (gnu services networking)
27 #:use-module (gnu system shadow)
28 #:use-module (gnu system linux) ; unix-pam-service
29 #:use-module (gnu packages glib)
30 #:use-module (gnu packages admin)
31 #:use-module (gnu packages freedesktop)
32 #:use-module (gnu packages gnome)
33 #:use-module (gnu packages avahi)
34 #:use-module (gnu packages wicd)
35 #:use-module (gnu packages polkit)
36 #:use-module ((gnu packages linux)
37 #:select (lvm2 fuse alsa-utils crda))
38 #:use-module (guix monads)
39 #:use-module (guix records)
40 #:use-module (guix store)
41 #:use-module (guix gexp)
42 #:use-module (ice-9 match)
43 #:export (dbus-service
44 upower-service
45 colord-service
46 geoclue-application
47 %standard-geoclue-applications
48 geoclue-service
49 polkit-service
50 elogind-configuration
51 elogind-service
52 %desktop-services))
53
54 ;;; Commentary:
55 ;;;
56 ;;; This module contains service definitions for a "desktop" environment.
57 ;;;
58 ;;; Code:
59
60 \f
61 ;;;
62 ;;; Helpers.
63 ;;;
64
65 (define (bool value)
66 (if value "true\n" "false\n"))
67
68 \f
69 ;;;
70 ;;; D-Bus.
71 ;;;
72
73 (define (dbus-configuration-directory dbus services)
74 "Return a configuration directory for @var{dbus} that includes the
75 @code{etc/dbus-1/system.d} directories of each package listed in
76 @var{services}."
77 (define build
78 #~(begin
79 (use-modules (sxml simple)
80 (srfi srfi-1))
81
82 (define (services->sxml services)
83 ;; Return the SXML 'includedir' clauses for DIRS.
84 `(busconfig
85 ,@(append-map (lambda (dir)
86 `((includedir
87 ,(string-append dir "/etc/dbus-1/system.d"))
88 (servicedir ;for '.service' files
89 ,(string-append dir "/share/dbus-1/services"))))
90 services)))
91
92 (mkdir #$output)
93 (copy-file (string-append #$dbus "/etc/dbus-1/system.conf")
94 (string-append #$output "/system.conf"))
95
96 ;; The default 'system.conf' has an <includedir> clause for
97 ;; 'system.d', so create it.
98 (mkdir (string-append #$output "/system.d"))
99
100 ;; 'system-local.conf' is automatically included by the default
101 ;; 'system.conf', so this is where we stuff our own things.
102 (call-with-output-file (string-append #$output "/system-local.conf")
103 (lambda (port)
104 (sxml->xml (services->sxml (list #$@services))
105 port)))))
106
107 (gexp->derivation "dbus-configuration" build))
108
109 (define* (dbus-service services #:key (dbus dbus))
110 "Return a service that runs the \"system bus\", using @var{dbus}, with
111 support for @var{services}.
112
113 @uref{http://dbus.freedesktop.org/, D-Bus} is an inter-process communication
114 facility. Its system bus is used to allow system services to communicate and
115 be notified of system-wide events.
116
117 @var{services} must be a list of packages that provide an
118 @file{etc/dbus-1/system.d} directory containing additional D-Bus configuration
119 and policy files. For example, to allow avahi-daemon to use the system bus,
120 @var{services} must be equal to @code{(list avahi)}."
121 (mlet %store-monad ((conf (dbus-configuration-directory dbus services)))
122 (return
123 (service
124 (documentation "Run the D-Bus system daemon.")
125 (provision '(dbus-system))
126 (requirement '(user-processes))
127 (start #~(make-forkexec-constructor
128 (list (string-append #$dbus "/bin/dbus-daemon")
129 "--nofork"
130 (string-append "--config-file=" #$conf "/system.conf"))))
131 (stop #~(make-kill-destructor))
132 (user-groups (list (user-group
133 (name "messagebus")
134 (system? #t))))
135 (user-accounts (list (user-account
136 (name "messagebus")
137 (group "messagebus")
138 (system? #t)
139 (comment "D-Bus system bus user")
140 (home-directory "/var/run/dbus")
141 (shell
142 #~(string-append #$shadow "/sbin/nologin")))))
143 (activate #~(begin
144 (use-modules (guix build utils))
145
146 (mkdir-p "/var/run/dbus")
147
148 (let ((user (getpwnam "messagebus")))
149 (chown "/var/run/dbus"
150 (passwd:uid user) (passwd:gid user)))
151
152 (unless (file-exists? "/etc/machine-id")
153 (format #t "creating /etc/machine-id...~%")
154 (let ((prog (string-append #$dbus "/bin/dbus-uuidgen")))
155 ;; XXX: We can't use 'system' because the initrd's
156 ;; guile system(3) only works when 'sh' is in $PATH.
157 (let ((pid (primitive-fork)))
158 (if (zero? pid)
159 (call-with-output-file "/etc/machine-id"
160 (lambda (port)
161 (close-fdes 1)
162 (dup2 (port->fdes port) 1)
163 (execl prog)))
164 (waitpid pid)))))))))))
165
166 \f
167 ;;;
168 ;;; Upower D-Bus service.
169 ;;;
170
171 (define* (upower-configuration-file #:key watts-up-pro? poll-batteries?
172 ignore-lid? use-percentage-for-policy?
173 percentage-low percentage-critical
174 percentage-action time-low
175 time-critical time-action
176 critical-power-action)
177 "Return an upower-daemon configuration file."
178 (text-file "UPower.conf"
179 (string-append
180 "[UPower]\n"
181 "EnableWattsUpPro=" (bool watts-up-pro?)
182 "NoPollBatteries=" (bool (not poll-batteries?))
183 "IgnoreLid=" (bool ignore-lid?)
184 "UsePercentageForPolicy=" (bool use-percentage-for-policy?)
185 "PercentageLow=" (number->string percentage-low) "\n"
186 "PercentageCritical=" (number->string percentage-critical) "\n"
187 "PercentageAction=" (number->string percentage-action) "\n"
188 "TimeLow=" (number->string time-low) "\n"
189 "TimeCritical=" (number->string time-critical) "\n"
190 "TimeAction=" (number->string time-action) "\n"
191 "CriticalPowerAction=" (match critical-power-action
192 ('hybrid-sleep "HybridSleep")
193 ('hibernate "Hibernate")
194 ('power-off "PowerOff"))
195 "\n")))
196
197 (define* (upower-service #:key (upower upower)
198 (watts-up-pro? #f)
199 (poll-batteries? #t)
200 (ignore-lid? #f)
201 (use-percentage-for-policy? #f)
202 (percentage-low 10)
203 (percentage-critical 3)
204 (percentage-action 2)
205 (time-low 1200)
206 (time-critical 300)
207 (time-action 120)
208 (critical-power-action 'hybrid-sleep))
209 "Return a service that runs @uref{http://upower.freedesktop.org/,
210 @command{upowerd}}, a system-wide monitor for power consumption and battery
211 levels, with the given configuration settings. It implements the
212 @code{org.freedesktop.UPower} D-Bus interface, and is notably used by GNOME."
213 (mlet %store-monad ((config (upower-configuration-file
214 #:watts-up-pro? watts-up-pro?
215 #:poll-batteries? poll-batteries?
216 #:ignore-lid? ignore-lid?
217 #:use-percentage-for-policy? use-percentage-for-policy?
218 #:percentage-low percentage-low
219 #:percentage-critical percentage-critical
220 #:percentage-action percentage-action
221 #:time-low time-low
222 #:time-critical time-critical
223 #:time-action time-action
224 #:critical-power-action critical-power-action)))
225 (return
226 (service
227 (documentation "Run the UPower power and battery monitor.")
228 (provision '(upower-daemon))
229 (requirement '(dbus-system udev))
230
231 (start #~(make-forkexec-constructor
232 (list (string-append #$upower "/libexec/upowerd"))
233 #:environment-variables
234 (list (string-append "UPOWER_CONF_FILE_NAME=" #$config))))
235 (stop #~(make-kill-destructor))
236 (activate #~(begin
237 (use-modules (guix build utils))
238 (mkdir-p "/var/lib/upower")
239 (let ((user (getpwnam "upower")))
240 (chown "/var/lib/upower"
241 (passwd:uid user) (passwd:gid user)))))
242
243 (user-groups (list (user-group
244 (name "upower")
245 (system? #t))))
246 (user-accounts (list (user-account
247 (name "upower")
248 (group "upower")
249 (system? #t)
250 (comment "UPower daemon user")
251 (home-directory "/var/empty")
252 (shell
253 #~(string-append #$shadow "/sbin/nologin")))))))))
254
255 \f
256 ;;;
257 ;;; Colord D-Bus service.
258 ;;;
259
260 (define* (colord-service #:key (colord colord))
261 "Return a service that runs @command{colord}, a system service with a D-Bus
262 interface to manage the color profiles of input and output devices such as
263 screens and scanners. It is notably used by the GNOME Color Manager graphical
264 tool. See @uref{http://www.freedesktop.org/software/colord/, the colord web
265 site} for more information."
266 (with-monad %store-monad
267 (return
268 (service
269 (documentation "Run the colord color management service.")
270 (provision '(colord-daemon))
271 (requirement '(dbus-system udev))
272
273 (start #~(make-forkexec-constructor
274 (list (string-append #$colord "/libexec/colord"))))
275 (stop #~(make-kill-destructor))
276 (activate #~(begin
277 (use-modules (guix build utils))
278 (mkdir-p "/var/lib/colord")
279 (let ((user (getpwnam "colord")))
280 (chown "/var/lib/colord"
281 (passwd:uid user) (passwd:gid user)))))
282
283 (user-groups (list (user-group
284 (name "colord")
285 (system? #t))))
286 (user-accounts (list (user-account
287 (name "colord")
288 (group "colord")
289 (system? #t)
290 (comment "colord daemon user")
291 (home-directory "/var/empty")
292 (shell
293 #~(string-append #$shadow "/sbin/nologin")))))))))
294
295 \f
296 ;;;
297 ;;; GeoClue D-Bus service.
298 ;;;
299
300 (define* (geoclue-application name #:key (allowed? #t) system? (users '()))
301 "Configure default GeoClue access permissions for an application. NAME is
302 the Desktop ID of the application, without the .desktop part. If ALLOWED? is
303 true, the application will have access to location information by default.
304 The boolean SYSTEM? value indicates that an application is a system component
305 or not. Finally USERS is a list of UIDs of all users for which this
306 application is allowed location info access. An empty users list means all
307 users are allowed."
308 (string-append
309 "[" name "]\n"
310 "allowed=" (bool allowed?)
311 "system=" (bool system?)
312 "users=" (string-join users ";") "\n"))
313
314 (define %standard-geoclue-applications
315 (list (geoclue-application "gnome-datetime-panel" #:system? #t)
316 (geoclue-application "epiphany" #:system? #f)
317 (geoclue-application "firefox" #:system? #f)))
318
319 (define* (geoclue-configuration-file #:key whitelist wifi-geolocation-url
320 submit-data?
321 wifi-submission-url submission-nick
322 applications)
323 "Return a geoclue configuration file."
324 (text-file "geoclue.conf"
325 (string-append
326 "[agent]\n"
327 "whitelist=" (string-join whitelist ";") "\n"
328 "[wifi]\n"
329 "url=" wifi-geolocation-url "\n"
330 "submit-data=" (bool submit-data?)
331 "submission-url=" wifi-submission-url "\n"
332 "submission-nick=" submission-nick "\n"
333 (string-join applications "\n"))))
334
335 (define* (geoclue-service #:key (geoclue geoclue)
336 (whitelist '())
337 (wifi-geolocation-url
338 ;; Mozilla geolocation service:
339 "https://location.services.mozilla.com/v1/geolocate?key=geoclue")
340 (submit-data? #f)
341 (wifi-submission-url
342 "https://location.services.mozilla.com/v1/submit?key=geoclue")
343 (submission-nick "geoclue")
344 (applications %standard-geoclue-applications))
345 "Return a service that runs the @command{geoclue} location service. This
346 service provides a D-Bus interface to allow applications to request access to
347 a user's physical location, and optionally to add information to online
348 location databases. By default, only the GNOME date-time panel and the Icecat
349 and Epiphany web browsers are able to ask for the user's location, and in the
350 case of Icecat and Epiphany, both will ask the user for permission first. See
351 @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the geoclue web
352 site} for more information."
353 (mlet %store-monad ((config (geoclue-configuration-file
354 #:whitelist whitelist
355 #:wifi-geolocation-url wifi-geolocation-url
356 #:submit-data? submit-data?
357 #:wifi-submission-url wifi-submission-url
358 #:submission-nick submission-nick
359 #:applications applications)))
360 (return
361 (service
362 (documentation "Run the GeoClue location service.")
363 (provision '(geoclue-daemon))
364 (requirement '(dbus-system))
365
366 (start #~(make-forkexec-constructor
367 (list (string-append #$geoclue "/libexec/geoclue"))
368 #:user "geoclue"
369 #:environment-variables
370 (list (string-append "GEOCLUE_CONFIG_FILE=" #$config))))
371 (stop #~(make-kill-destructor))
372
373 (user-groups (list (user-group
374 (name "geoclue")
375 (system? #t))))
376 (user-accounts (list (user-account
377 (name "geoclue")
378 (group "geoclue")
379 (system? #t)
380 (comment "GeoClue daemon user")
381 (home-directory "/var/empty")
382 (shell
383 "/run/current-system/profile/sbin/nologin"))))))))
384
385 \f
386 ;;;
387 ;;; Polkit privilege management service.
388 ;;;
389
390 (define* (polkit-service #:key (polkit polkit))
391 "Return a service that runs the @command{polkit} privilege management
392 service. By querying the @command{polkit} service, a privileged system
393 component can know when it should grant additional capabilities to ordinary
394 users. For example, an ordinary user can be granted the capability to suspend
395 the system if the user is logged in locally."
396 (with-monad %store-monad
397 (return
398 (service
399 (documentation "Run the polkit privilege management service.")
400 (provision '(polkit-daemon))
401 (requirement '(dbus-system))
402
403 (start #~(make-forkexec-constructor
404 (list (string-append #$polkit "/lib/polkit-1/polkitd"))))
405 (stop #~(make-kill-destructor))
406
407 (user-groups (list (user-group
408 (name "polkitd")
409 (system? #t))))
410 (user-accounts (list (user-account
411 (name "polkitd")
412 (group "polkitd")
413 (system? #t)
414 (comment "Polkit daemon user")
415 (home-directory "/var/empty")
416 (shell
417 "/run/current-system/profile/sbin/nologin"))))
418
419 (pam-services (list (unix-pam-service "polkit-1")))))))
420
421 \f
422 ;;;
423 ;;; Elogind login and seat management service.
424 ;;;
425
426 (define-record-type* <elogind-configuration> elogind-configuration
427 make-elogind-configuration
428 elogind-configuration
429 (kill-user-processes? elogind-kill-user-processes?
430 (default #f))
431 (kill-only-users elogind-kill-only-users
432 (default '()))
433 (kill-exclude-users elogind-kill-exclude-users
434 (default '("root")))
435 (inhibit-delay-max-seconds elogind-inhibit-delay-max-seconds
436 (default 5))
437 (handle-power-key elogind-handle-power-key
438 (default 'poweroff))
439 (handle-suspend-key elogind-handle-suspend-key
440 (default 'suspend))
441 (handle-hibernate-key elogind-handle-hibernate-key
442 ;; (default 'hibernate)
443 ;; XXX Ignore it for now, since we don't
444 ;; yet handle resume-from-hibernation in
445 ;; our initrd.
446 (default 'ignore))
447 (handle-lid-switch elogind-handle-lid-switch
448 (default 'suspend))
449 (handle-lid-switch-docked elogind-handle-lid-switch-docked
450 (default 'ignore))
451 (power-key-ignore-inhibited? elogind-power-key-ignore-inhibited?
452 (default #f))
453 (suspend-key-ignore-inhibited? elogind-suspend-key-ignore-inhibited?
454 (default #f))
455 (hibernate-key-ignore-inhibited? elogind-hibernate-key-ignore-inhibited?
456 (default #f))
457 (lid-switch-ignore-inhibited? elogind-lid-switch-ignore-inhibited?
458 (default #t))
459 (holdoff-timeout-seconds elogind-holdoff-timeout-seconds
460 (default 30))
461 (idle-action elogind-idle-action
462 (default 'ignore))
463 (idle-action-seconds elogind-idle-action-seconds
464 (default (* 30 60)))
465 (runtime-directory-size-percent elogind-runtime-directory-size-percent
466 (default 10))
467 (runtime-directory-size elogind-runtime-directory-size
468 (default #f))
469 (remove-ipc? elogind-remove-ipc?
470 (default #t))
471
472 (suspend-state elogind-suspend-state
473 (default '("mem" "standby" "freeze")))
474 (suspend-mode elogind-suspend-mode
475 (default '()))
476 (hibernate-state elogind-hibernate-state
477 (default '("disk")))
478 (hibernate-mode elogind-hibernate-mode
479 (default '("platform" "shutdown")))
480 (hybrid-sleep-state elogind-hybrid-sleep-state
481 (default '("disk")))
482 (hybrid-sleep-mode elogind-hybrid-sleep-mode
483 (default
484 '("suspend" "platform" "shutdown"))))
485
486 (define (elogind-configuration-file config)
487 (define (yesno x)
488 (match x
489 (#t "yes")
490 (#f "no")
491 (_ (error "expected #t or #f, instead got:" x))))
492 (define char-set:user-name
493 (string->char-set "abcdefghijklmnopqrstuvwxyz0123456789_-"))
494 (define (valid-list? l pred)
495 (and-map (lambda (x) (string-every pred x)) l))
496 (define (user-name-list users)
497 (unless (valid-list? users char-set:user-name)
498 (error "invalid user list" users))
499 (string-join users " "))
500 (define (enum val allowed)
501 (unless (memq val allowed)
502 (error "invalid value" val allowed))
503 (symbol->string val))
504 (define (non-negative-integer x)
505 (unless (exact-integer? x) (error "not an integer" x))
506 (when (negative? x) (error "negative number not allowed" x))
507 (number->string x))
508 (define handle-actions
509 '(ignore poweroff reboot halt kexec suspend hibernate hybrid-sleep lock))
510 (define (handle-action x)
511 (enum x handle-actions))
512 (define (sleep-list tokens)
513 (unless (valid-list? tokens char-set:user-name)
514 (error "invalid sleep list" tokens))
515 (string-join tokens " "))
516 (define-syntax ini-file-clause
517 (syntax-rules ()
518 ((_ config (prop (parser getter)))
519 (string-append prop "=" (parser (getter config)) "\n"))
520 ((_ config str)
521 (string-append str "\n"))))
522 (define-syntax-rule (ini-file config file clause ...)
523 (text-file file (string-append (ini-file-clause config clause) ...)))
524 (ini-file
525 config "logind.conf"
526 "[Login]"
527 ("KillUserProcesses" (yesno elogind-kill-user-processes?))
528 ("KillOnlyUsers" (user-name-list elogind-kill-only-users))
529 ("KillExcludeUsers" (user-name-list elogind-kill-exclude-users))
530 ("InhibitDelayMaxSecs" (non-negative-integer elogind-inhibit-delay-max-seconds))
531 ("HandlePowerKey" (handle-action elogind-handle-power-key))
532 ("HandleSuspendKey" (handle-action elogind-handle-suspend-key))
533 ("HandleHibernateKey" (handle-action elogind-handle-hibernate-key))
534 ("HandleLidSwitch" (handle-action elogind-handle-lid-switch))
535 ("HandleLidSwitchDocked" (handle-action elogind-handle-lid-switch-docked))
536 ("PowerKeyIgnoreInhibited" (yesno elogind-power-key-ignore-inhibited?))
537 ("SuspendKeyIgnoreInhibited" (yesno elogind-suspend-key-ignore-inhibited?))
538 ("HibernateKeyIgnoreInhibited" (yesno elogind-hibernate-key-ignore-inhibited?))
539 ("LidSwitchIgnoreInhibited" (yesno elogind-lid-switch-ignore-inhibited?))
540 ("HoldoffTimeoutSecs" (non-negative-integer elogind-holdoff-timeout-seconds))
541 ("IdleAction" (handle-action elogind-idle-action))
542 ("IdleActionSeconds" (non-negative-integer elogind-idle-action-seconds))
543 ("RuntimeDirectorySize"
544 (identity
545 (lambda (config)
546 (match (elogind-runtime-directory-size-percent config)
547 (#f (non-negative-integer (elogind-runtime-directory-size config)))
548 (percent (string-append (non-negative-integer percent) "%"))))))
549 ("RemoveIpc" (yesno elogind-remove-ipc?))
550 "[Sleep]"
551 ("SuspendState" (sleep-list elogind-suspend-state))
552 ("SuspendMode" (sleep-list elogind-suspend-mode))
553 ("HibernateState" (sleep-list elogind-hibernate-state))
554 ("HibernateMode" (sleep-list elogind-hibernate-mode))
555 ("HybridSleepState" (sleep-list elogind-hybrid-sleep-state))
556 ("HybridSleepMode" (sleep-list elogind-hybrid-sleep-mode))))
557
558 (define* (elogind-service #:key (elogind elogind)
559 (config (elogind-configuration)))
560 "Return a service that runs the @command{elogind} login and seat management
561 service. The @command{elogind} service integrates with PAM to allow other
562 system components to know the set of logged-in users as well as their session
563 types (graphical, console, remote, etc.). It can also clean up after users
564 when they log out."
565 (mlet %store-monad ((config-file (elogind-configuration-file config)))
566 (return
567 (service
568 (documentation "Run the elogind login and seat management service.")
569 (provision '(elogind))
570 (requirement '(dbus-system))
571
572 (start #~(make-forkexec-constructor
573 (list (string-append #$elogind "/libexec/elogind/elogind"))
574 #:environment-variables
575 (list (string-append "ELOGIND_CONF_FILE=" #$config-file))))
576 (stop #~(make-kill-destructor))))))
577
578 \f
579 ;;;
580 ;;; The default set of desktop services.
581 ;;;
582 (define %desktop-services
583 ;; List of services typically useful for a "desktop" use case.
584 (cons* (slim-service)
585
586 (avahi-service)
587 (wicd-service)
588 (upower-service)
589 ;; FIXME: The colord, geoclue, and polkit services could all be
590 ;; bus-activated by default, so they don't run at program startup.
591 ;; However, user creation and /var/lib/colord creation happen at
592 ;; service activation time, so we currently add them to the set of
593 ;; default services.
594 (colord-service)
595 (geoclue-service)
596 (polkit-service)
597 (elogind-service)
598 (dbus-service (list avahi wicd upower colord geoclue polkit elogind))
599
600 (ntp-service)
601
602 (map (lambda (mservice)
603 (mlet %store-monad ((service mservice))
604 (cond
605 ;; Provide an nscd ready to use nss-mdns.
606 ((memq 'nscd (service-provision service))
607 (nscd-service (nscd-configuration)
608 #:name-services (list nss-mdns)))
609
610 ;; Add more rules to udev-service.
611 ;;
612 ;; XXX Keep this in sync with the 'udev-service' call in
613 ;; %base-services. Here we intend only to add 'upower',
614 ;; 'colord', and 'elogind'.
615 ((memq 'udev (service-provision service))
616 (udev-service #:rules
617 (list lvm2 fuse alsa-utils crda
618 upower colord elogind)))
619
620 (else mservice))))
621 %base-services)))
622
623 ;;; desktop.scm ends here