diff options
Diffstat (limited to 'home-configuration.scm')
| -rw-r--r-- | home-configuration.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index 9614a03..852e690 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -50,8 +50,7 @@ (services (append (list (simple-service 'home-environment-variables-service home-environment-variables-service-type - '(("EDITOR" . "emacsclient") - ("PASSWORD_STORE_DIR" . "/home/charles/Code/home/.password-store"))) + '(("EDITOR" . "emacsclient"))) (service home-bash-service-type (home-bash-configuration (aliases '(("egrep" . "egrep --color=auto") @@ -68,7 +67,12 @@ ".bash_logout" "bash_logout"))))) (service home-files-service-type - (list (list ".emacs" (local-file ".emacs" "emacs")))) + (list + (list ".emacs" (local-file ".emacs" "emacs")) + (list ".password-store" + (local-file ".password-store" + "password-store" + #:recursive? #t)))) (service home-msmtp-service-type (home-msmtp-configuration (accounts |
