From 7790e32556f0eebb1bb640e604334f8d1dc20ca5 Mon Sep 17 00:00:00 2001 From: Florian Pelz Date: Tue, 25 Feb 2025 11:48:02 +0100 Subject: [PATCH] system: default-skeleton-home-config: Include %base-home-services. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/system/shadow.scm (%default-skeleton-home-config): Follow the news entry’s instructions to add %base-home-services. Fixes: Change-Id: Ieef976f9375791502e6156a978a032fbd4c2324d --- gnu/system/shadow.scm | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/gnu/system/shadow.scm b/gnu/system/shadow.scm index 48eca2564f1..b68a8188719 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) + (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-files-service-type + `((\".guile\" ,%default-dotguile) + (\".Xdefaults\" ,%default-xdefaults))) - (service home-xdg-configuration-files-service-type - `((\"gdb/gdbinit\" ,%default-gdbinit) - (\"nano/nanorc\" ,%default-nanorc))))))) + (service home-xdg-configuration-files-service-type + `((\"gdb/gdbinit\" ,%default-gdbinit) + (\"nano/nanorc\" ,%default-nanorc)))) + + %base-home-services)))) home-config"))