diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 01:04:42 +0100 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 01:04:42 +0100 |
commit | 25f51bbcf93d825bed086541e52f91a416eafc66 (patch) | |
tree | d805f502735d9bd8ab526a422510d1b29a3d5331 /home-configuration.scm | |
parent | 844a84b51816ffcf1a6aa30c7c91286332fffacb (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 |