diff options
Diffstat (limited to '')
-rw-r--r-- | home-configuration.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index a76209a..9128963 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -172,4 +172,12 @@ "bash_profile"))) (bash-logout (list (local-file ".bash_logout" "bash_logout"))))) (service home-files-service-type - `((".config" ,(local-file "./.config" "user-config-folder" #:recursive? #t))))))) + '(map (match-lambda + (name) + ((string-append ".config/" name) + (local-file name))) + (file-system-tree "./.config")) + ;; `( + ;; ;(".config" ,(local-file "./.config" "user-config-folder" #:recursive? #t)) + ;; ) + )))) |