civodul pushed a commit to branch master
in repository guix.

commit 56ad923f47d352e1bee1a94da1a246ae21c03569
Author: Ludovic Courtès <[email protected]>
AuthorDate: Fri Jun 9 13:59:13 2023 +0200

    system: account: Fix default value.
    
    Fixes a regression introduced in
    66ecffbeba0685ff2f1071db8aeb2393986afb97.
    
    * gnu/system/shadow.scm (account-service-type)[default-value]: Change to
    the empty list.
---
 gnu/system/shadow.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/system/shadow.scm b/gnu/system/shadow.scm
index 4a8cc87f0f..9ca1895ded 100644
--- a/gnu/system/shadow.scm
+++ b/gnu/system/shadow.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2013-2020, 2022 Ludovic Courtès <[email protected]>
+;;; Copyright © 2013-2020, 2022, 2023 Ludovic Courtès <[email protected]>
 ;;; Copyright © 2016 Alex Griffin <[email protected]>
 ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <[email protected]>
 ;;; Copyright © 2020, 2023 Efraim Flashner <[email protected]>
@@ -458,7 +458,7 @@ the /etc/skel directory for those."
                                           (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.")))

Reply via email to