mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
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
|
||||
;;; 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 © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||
;;; Copyright © 2020, 2023 Efraim Flashner <efraim@flashner.co.il>
|
||||
|
@ -458,7 +458,7 @@ (define account-service-type
|
|||
(const '(user-homes)))
|
||||
(service-extension etc-service-type
|
||||
etc-files)))
|
||||
(default-value #f)
|
||||
(default-value '())
|
||||
(description
|
||||
"Ensure the specified user accounts and groups exist, as well
|
||||
as each account home directory.")))
|
||||
|
|
Loading…
Reference in a new issue