summaryrefslogtreecommitdiff
path: root/systems/izumi/izumi.org
diff options
context:
space:
mode:
Diffstat (limited to 'systems/izumi/izumi.org')
-rw-r--r--systems/izumi/izumi.org22
1 files changed, 11 insertions, 11 deletions
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]]