home: shepherd: "shepherd.conf" returns one value.

Fixes <https://issues.guix.gnu.org/54779>.
Reported by Aleksandr Vityazev <avityazev@posteo.org>
and Nicolas Graves <ngraves@ngraves.fr>.

* gnu/home/services/shepherd.scm (home-shepherd-configuration-file):
Return one value.
This commit is contained in:
Ludovic Courtès 2022-04-20 23:47:54 +02:00
parent cd5c31d192
commit bc867b2ab0
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -84,7 +84,10 @@ (define config
services))))
(if (defined? 'start-in-the-background)
(start-in-the-background services-to-start)
(for-each start services-to-start)))))
(for-each start services-to-start))
;; Return one value.
#t)))
(scheme-file "shepherd.conf" config)))