diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 01:04:42 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2022-10-31 01:04:42 +0100 |
commit | e799ffa37ab0244d13d7b648ead3d71618cd93ec (patch) | |
tree | 394818623992d7389124e75e89d6a3df1d6346e5 /home-configuration.scm | |
parent | 51cf5184b614a2fbf9563a01cc1c3ea1ce9366cb (diff) |
Home configuration: break out bashrc-target
Diffstat (limited to 'home-configuration.scm')
-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 b8e0aa3..b11e212 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -36,9 +36,12 @@ ".bash_profile") "bash_profile"))) +(define bashrc-target + (string-append config-prefix + ".bashrc")) + (define bashrc - (local-file (string-append config-prefix - ".bashrc") + (local-file bashrc-target "bashrc")) (define home-bashrc |