diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 01:09:45 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2022-10-31 01:09:45 +0100 |
commit | 829033294c5237b62afc52bdb26f433eb9fc2de5 (patch) | |
tree | 4c34a1c476d75fdea071f9789ed62a1efd808fa1 | |
parent | 44f3c9a111366d48d9f2c4bc7dbf914cd713bfb4 (diff) |
Home configuration: break out bash-profile-target
-rw-r--r-- | home-configuration.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index 3788b06..3bd9d1f 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -31,9 +31,12 @@ ("system-update" . "pull-guix && reconfigure-system && reconfigure-home") ("system-update-" . "pull-guix- && reconfigure-system- && reconfigure-home-"))) +(define bash-profile-target + (string-append config-prefix + ".bash_profile")) + (define bash-profile - (local-file (string-append config-prefix - ".bash_profile") + (local-file bash-profile-target "bash_profile")) (define home-bash-profile |