diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 01:02:15 +0100 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 01:02:15 +0100 |
commit | 844a84b51816ffcf1a6aa30c7c91286332fffacb (patch) | |
tree | 319c97a19988b6d4f2848303fa29ab7143bcfdd6 | |
parent | 93372f00094451a4915f3cfb995f693930e686de (diff) |
Home configuration: break out bashrc
-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 fc707f2..b8e0aa3 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -36,10 +36,13 @@ ".bash_profile") "bash_profile"))) +(define bashrc + (local-file (string-append config-prefix + ".bashrc") + "bashrc")) + (define home-bashrc - `(,(local-file (string-append config-prefix - ".bashrc") - "bashrc"))) + `(,bashrc)) (define bash-configuration (home-bash-configuration (environment-variables home-env-vars) |