summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--systems/izumi/izumi.org27
1 files changed, 11 insertions, 16 deletions
diff --git a/systems/izumi/izumi.org b/systems/izumi/izumi.org
index 03da45e..7294007 100644
--- a/systems/izumi/izumi.org
+++ b/systems/izumi/izumi.org
@@ -371,7 +371,17 @@
#+BEGIN_SRC scheme
(list
<<EMACS-HOME-PROFILE>>
- <<HOME-FILES-SERVICE-TYPE>>
+ (simple-service 'home-files
+ home-files-service-type
+ (list (list ".config/emacs/init.el"
+ (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
@@ -519,18 +529,3 @@
(license license:gpl3+))))))
#+END_SRC
-#+NAME: HOME-FILES-SERVICE-TYPE
-#+BEGIN_SRC scheme
- (simple-service 'home-files
- home-files-service-type
- (list (list ".config/emacs/init.el"
- (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
-