diff options
Diffstat (limited to 'systems/izumi/home-configuration.scm')
-rw-r--r-- | systems/izumi/home-configuration.scm | 22 |
1 files changed, 11 insertions, 11 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 |