diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-06-09 13:59:13 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-06-09 14:19:14 +0200 |
commit | 56ad923f47d352e1bee1a94da1a246ae21c03569 (patch) | |
tree | 4963b959886a7bc6452e68661708a800cd91dc83 /gnu/system | |
parent | 53bf9fba0c9542a46702bb30251f5796da371e64 (diff) | |
download | guix-56ad923f47d352e1bee1a94da1a246ae21c03569.tar.gz |
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.
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/shadow.scm | 4 |
1 files 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 <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 @@ 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."))) |