From 2648336957b4d327d372129af901fd90008da1ee Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 12 Dec 2022 09:13:49 -0500 Subject: bash: Fix sourcing of Guix profile. --- dotfiles/.bash_profile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dotfiles/.bash_profile b/dotfiles/.bash_profile index 1297ee0..e517147 100644 --- a/dotfiles/.bash_profile +++ b/dotfiles/.bash_profile @@ -7,7 +7,8 @@ fi if [ -f $HOME/.guix-profile/etc/profile ] then - source $HOME/.guix-profile/etc/profile + GUIX_PROFILE=$HOME/.guix-profile + source $GUIX_PROFILE/etc/profile fi export PATH="$HOME/.config/guix/current/bin${PATH:+:}$PATH" -- cgit v1.2.3