diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 01:07:15 +0100 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 01:07:15 +0100 |
commit | 2ec2e64b72b5c63f5f455ea6784498820457e8cb (patch) | |
tree | 79e5eee2d25b7e8beb7e174c22410810d991e08d /home-configuration.scm | |
parent | 25f51bbcf93d825bed086541e52f91a416eafc66 (diff) |
Home configuration: break out bash-profile
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 |