Archived
1
0
Fork 0

system: account: Fix default value.

Fixes a regression introduced in
66ecffbeba.

* gnu/system/shadow.scm (account-service-type)[default-value]: Change to
the empty list.
This commit is contained in:
Ludovic Courtès 2023-06-09 13:59:13 +02:00
parent 53bf9fba0c
commit 56ad923f47
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013-2020, 2022 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2013-2020, 2022, 2023 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2016 Alex Griffin <a@ajgrf.com> ;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2020, 2023 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2020, 2023 Efraim Flashner <efraim@flashner.co.il>
@ -458,7 +458,7 @@ the /etc/skel directory for those."
(const '(user-homes))) (const '(user-homes)))
(service-extension etc-service-type (service-extension etc-service-type
etc-files))) etc-files)))
(default-value #f) (default-value '())
(description (description
"Ensure the specified user accounts and groups exist, as well "Ensure the specified user accounts and groups exist, as well
as each account home directory."))) as each account home directory.")))