diff options
Diffstat (limited to 'home-configuration.scm')
-rw-r--r-- | home-configuration.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index b11e212..3788b06 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -31,10 +31,13 @@ ("system-update" . "pull-guix && reconfigure-system && reconfigure-home") ("system-update-" . "pull-guix- && reconfigure-system- && reconfigure-home-"))) +(define bash-profile + (local-file (string-append config-prefix + ".bash_profile") + "bash_profile")) + (define home-bash-profile - `(,(local-file (string-append config-prefix - ".bash_profile") - "bash_profile"))) + `(,bash-profile)) (define bashrc-target (string-append config-prefix |