summaryrefslogtreecommitdiff
path: root/home-configuration.scm
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-14 11:17:09 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-14 11:17:09 +0100
commit7a123437a55d53dc32fe6fd60198f5513a9834eb (patch)
tree60e2d04234ccb23339dbfccd49b66691b4a6e475 /home-configuration.scm
parent6c804b8907e0519723040424f2ce5746fc16b9e4 (diff)
Home configuration: break out home-bash-profile
Diffstat (limited to 'home-configuration.scm')
-rw-r--r--home-configuration.scm9
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")))))