From d87d2942bb5dd97ab30ff03a1a9c16db3c3fe60c Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Wed, 10 Jul 2024 12:50:35 +0200 Subject: pretty-print the 'home-files service --- systems/izumi/home-configuration.scm | 22 +++++++++++----------- systems/izumi/izumi.org | 22 +++++++++++----------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/systems/izumi/home-configuration.scm b/systems/izumi/home-configuration.scm index 52d5f80..c960bc9 100644 --- a/systems/izumi/home-configuration.scm +++ b/systems/izumi/home-configuration.scm @@ -126,17 +126,17 @@ "reviewed at regular interval. After each review, the next review interval is\n" "calculated based on how well you remembered the contents of the card.\n")) (license license:gpl3+)))))) - ( simple-service - 'home-files - home-files-service-type - ( list - ( list ".emacs" ( local-file "home-files/emacs-configuration.el" )) - (list ".gnus" (local-file "home-files/gnus-configuration.el")) - ( list ".gitconfig" ( local-file "home-files/gitconfig")) - ( list - ".config/git/ignore" - ;; https://github.com/github/gitignore/blob/main/Global/Emacs.gitignore - ( local-file "home-files/git-ignore.conf" ) ) ) ) + (simple-service 'home-files + home-files-service-type + (list (list ".emacs" + (local-file "home-files/emacs-configuration.el" )) + (list ".gnus" + (local-file "home-files/gnus-configuration.el")) + (list ".gitconfig" + (local-file "home-files/gitconfig")) + (list ".config/git/ignore" + ;; https://github.com/github/gitignore/blob/main/Global/Emacs.gitignore + (local-file "home-files/git-ignore.conf")))) (simple-service 'environment-variables home-environment-variables-service-type diff --git a/systems/izumi/izumi.org b/systems/izumi/izumi.org index ef998b3..3114f72 100644 --- a/systems/izumi/izumi.org +++ b/systems/izumi/izumi.org @@ -838,17 +838,17 @@ #+NAME: HOME-FILES-SERVICE-TYPE #+BEGIN_SRC scheme - ( simple-service - 'home-files - home-files-service-type - ( list - ( list ".emacs" ( local-file "home-files/emacs-configuration.el" )) - (list ".gnus" (local-file "home-files/gnus-configuration.el")) - ( list ".gitconfig" ( local-file "home-files/gitconfig")) - ( list - ".config/git/ignore" - ;; https://github.com/github/gitignore/blob/main/Global/Emacs.gitignore - ( local-file "home-files/git-ignore.conf" ) ) ) ) + (simple-service 'home-files + home-files-service-type + (list (list ".emacs" + (local-file "home-files/emacs-configuration.el" )) + (list ".gnus" + (local-file "home-files/gnus-configuration.el")) + (list ".gitconfig" + (local-file "home-files/gitconfig")) + (list ".config/git/ignore" + ;; https://github.com/github/gitignore/blob/main/Global/Emacs.gitignore + (local-file "home-files/git-ignore.conf")))) #+END_SRC *** [[https://guix.gnu.org/manual/en/html_node/Shells-Home-Services.html][13.3.2 Shells]] -- cgit v1.2.3