diff options
author | Luca Matei Pintilie <luca@lucamatei.com> | 2024-09-01 18:16:12 +0000 |
---|---|---|
committer | Luca Matei Pintilie <luca@lucamatei.com> | 2024-10-05 18:24:16 +0000 |
commit | 3f1959773a2da474fd6109e2b813ec31859e1c97 (patch) | |
tree | e66e339bee7436a9a8fc91e601ba04c84e34ee03 | |
parent | 895eae7a1687a844f55739ecb8627ac4247f959e (diff) | |
download | dotfiles-3f1959773a2da474fd6109e2b813ec31859e1c97.tar dotfiles-3f1959773a2da474fd6109e2b813ec31859e1c97.tar.gz dotfiles-3f1959773a2da474fd6109e2b813ec31859e1c97.tar.bz2 dotfiles-3f1959773a2da474fd6109e2b813ec31859e1c97.tar.lz dotfiles-3f1959773a2da474fd6109e2b813ec31859e1c97.tar.xz dotfiles-3f1959773a2da474fd6109e2b813ec31859e1c97.tar.zst dotfiles-3f1959773a2da474fd6109e2b813ec31859e1c97.zip |
fixup! fixup! WIP add guix config
-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)) + ;; ) + )))) |