diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 00:40:09 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2022-10-31 00:40:09 +0100 |
commit | 9236ecc3ce9be4d95c1c014350a893f4ea0bbfb1 (patch) | |
tree | 0bcd65ba3cca818ee401f6e7976cd5b905c161ed /home-configuration.scm | |
parent | 8552188203e56145ad2580f433c3f928c1585e02 (diff) |
Home configuration: break out home-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 5cd11bd..2bd345a 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -31,12 +31,15 @@ ("system-update" . "pull-guix && reconfigure-system && reconfigure-home") ("system-update-" . "pull-guix- && reconfigure-system- && reconfigure-home-"))) +(define home-bash-profile + `(,(local-file (string-append config-prefix + ".bash_profile") + "bash_profile"))) + (define bash-configuration (home-bash-configuration (environment-variables home-env-vars) (aliases home-aliases) - (bash-profile `(,(local-file (string-append config-prefix - ".bash_profile") - "bash_profile"))) + (bash-profile home-bash-profile) (bashrc `(,(local-file (string-append config-prefix ".bashrc") "bashrc"))))) |