summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Guilherme Coelho <lgcoelho@disroot.org>2024-04-09 20:38:33 -0300
committerGuix Patches Tester <>2024-04-17 14:19:04 +0200
commitd281d4147d49d87325e61411cef78c0fe389cd3c (patch)
treeaa4307ad933720ef974a66a0ae6713334c15a83b
parentb47ae1ecc43baaf726701ab2d2f810ecfaa75428 (diff)
downloadguix-patches-issue-70318.tar
guix-patches-issue-70318.tar.gz
services: base: Fix unintentional creation of greeter's home directoryissue-70318
* gnu/services/base.scm (greetd-account) [create-home-directory?]: Set to false.
-rw-r--r--gnu/services/base.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm
index 3f912225a0..b39b8418ed 100644
--- a/gnu/services/base.scm
+++ b/gnu/services/base.scm
@@ -21,6 +21,7 @@
;;; Copyright © 2022 Justin Veilleux <terramorpha@cock.li>
;;; Copyright © 2022 ( <paren@disroot.org>
;;; Copyright © 2023 Bruno Victal <mirai@makinata.eu>
+;;; Copyright © 2024 Luis Guilherme Coelho <lgcoelho@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -3481,6 +3482,7 @@ to handle."
(name "greeter")
(group "greeter")
(supplementary-groups (greetd-greeter-supplementary-groups config))
+ (create-home-directory? #f)
(system? #t))))
(define (make-greetd-pam-mount-conf-file config)