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:
parent
53bf9fba0c
commit
56ad923f47
1 changed files with 2 additions and 2 deletions
|
|
@ -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.")))
|
||||||
|
|
|
||||||
Reference in a new issue