summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marekpasnikowski@pm.me>2023-12-26 05:49:12 +0100
committerMarek Paśnikowski <marekpasnikowski@pm.me>2023-12-26 05:49:12 +0100
commit681bbd1d8a1b67b2c3d7828c4d5344970062682e (patch)
treeda8f1a1c5115d8b5a214a34fb299fea7247f3b73
parent9c799bd8aa1dda59f669475760a3ad213f62d38c (diff)
Improve HOME-FILES-SERVICE-TYPE's formatting
-rw-r--r--home-configuration.scm18
-rw-r--r--izumi.org18
2 files changed, 18 insertions, 18 deletions
diff --git a/home-configuration.scm b/home-configuration.scm
index 35c2529..25812ca 100644
--- a/home-configuration.scm
+++ b/home-configuration.scm
@@ -132,15 +132,15 @@
"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
- ".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
+ ".config/git/ignore"
+ ;; https://github.com/github/gitignore/blob/main/Global/Emacs.gitignore
+ ( local-file "home-files/git-ignore.conf" ) ) ) ))
(list
(let*
((and " && ")
diff --git a/izumi.org b/izumi.org
index d8cfaf3..10c4420 100644
--- a/izumi.org
+++ b/izumi.org
@@ -774,15 +774,15 @@
#+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
- ".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
+ ".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]]