This is an automated email from the git hooks/post-receive script.

pelzflorian pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 7790e32556 system: default-skeleton-home-config: Include 
%base-home-services.
7790e32556 is described below

commit 7790e32556f0eebb1bb640e604334f8d1dc20ca5
Author: Florian Pelz <pelzflor...@pelzflorian.de>
AuthorDate: Tue Feb 25 11:48:02 2025 +0100

    system: default-skeleton-home-config: Include %base-home-services.
    
    * gnu/system/shadow.scm (%default-skeleton-home-config): Follow
    the news entry’s instructions to add %base-home-services.
    
    Fixes: <https://issues.guix.gnu.org/75897>
    Change-Id: Ieef976f9375791502e6156a978a032fbd4c2324d
---
 gnu/system/shadow.scm | 29 ++++++++++++++++-------------
 1 file changed, 16 insertions(+), 13 deletions(-)

diff --git a/gnu/system/shadow.scm b/gnu/system/shadow.scm
index 48eca2564f..b68a818871 100644
--- a/gnu/system/shadow.scm
+++ b/gnu/system/shadow.scm
@@ -267,19 +267,22 @@ for a colorful Guile experience.\\n\\n\"))))\n"))
 (define home-config
   (home-environment
     (services
-      (list
-        ;; Uncomment the shell you wish to use for your user:
-        ;(service home-bash-service-type)
-        ;(service home-fish-service-type)
-        ;(service home-zsh-service-type)
-
-        (service home-files-service-type
-         `((\".guile\" ,%default-dotguile)
-           (\".Xdefaults\" ,%default-xdefaults)))
-
-        (service home-xdg-configuration-files-service-type
-         `((\"gdb/gdbinit\" ,%default-gdbinit)
-           (\"nano/nanorc\" ,%default-nanorc)))))))
+      (append
+        (list
+          ;; Uncomment the shell you wish to use for your user:
+          ;(service home-bash-service-type)
+          ;(service home-fish-service-type)
+          ;(service home-zsh-service-type)
+
+          (service home-files-service-type
+           `((\".guile\" ,%default-dotguile)
+             (\".Xdefaults\" ,%default-xdefaults)))
+
+          (service home-xdg-configuration-files-service-type
+           `((\"gdb/gdbinit\" ,%default-gdbinit)
+             (\"nano/nanorc\" ,%default-nanorc))))
+
+        %base-home-services))))
 
 home-config"))
 

Reply via email to