aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2025-03-25 16:53:55 +0100
committerLudovic Courtès <ludo@gnu.org>2025-04-20 18:50:51 +0200
commitda741d89310efd0530351670d9c55ec2f952ab98 (patch)
tree1d5a1f16f41c62e23f08f94252f53cddb9c35dd3
parentc990405607f3692420ed94e75a7046feff3e28ce (diff)
downloadguix-da741d89310efd0530351670d9c55ec2f952ab98.tar.gz
guix-da741d89310efd0530351670d9c55ec2f952ab98.zip
services: account: Create /var/guix/profiles/per-user/$USER.
* gnu/system/shadow.scm (account-shepherd-service): Create /var/guix/profiles/per-user/$USER in ‘user-homes’ service. Change-Id: I22e66e8a34d63686df9bae64c68df65c8889e72a
-rw-r--r--gnu/system/shadow.scm19
1 files changed, 18 insertions, 1 deletions
diff --git a/gnu/system/shadow.scm b/gnu/system/shadow.scm
index b68a818871..d0f1b6b2b1 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, 2023 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2013-2020, 2022-2023, 2025 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>
@@ -460,6 +460,12 @@ accounts among ACCOUNTS+GROUPS."
(define accounts
(filter user-account? accounts+groups))
+ (define regular-account-names
+ (filter-map (lambda (account)
+ (and (not (user-account-system? account))
+ (user-account-name account)))
+ accounts))
+
;; Create home directories only once 'file-systems' is up. This makes sure
;; they are created in the right place if /home lives on a separate
;; partition.
@@ -480,6 +486,17 @@ accounts among ACCOUNTS+GROUPS."
(activate-user-home
(map sexp->user-account
(list #$@(map user-account->gexp accounts))))
+
+ ;; Create the user's profile directory upfront:
+ ;; guix-daemon lacks permissions to create it when it is
+ ;; running as an unprivileged user.
+ (for-each (lambda (account)
+ (let ((profile (in-vicinity
+ "/var/guix/profiles/per-user"
+ account))
+ (owner (getpwnam account)))
+ (mkdir-p/perms profile owner #o755)))
+ '#$regular-account-names)
#t))) ;success
(documentation "Create user home directories."))))