summaryrefslogtreecommitdiffstats
path: root/.bash_profile
blob: 608f03104c1125dd92dfe96b67e3b14b697621e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Honor per-interactive-shell startup file
if [ -f ~/.bashrc ]; then . ~/.bashrc; fi

export PATH="$HOME/bin:$PATH
export GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles

for i in $GUIX_EXTRA_PROFILES/*; do
  profile=$i/$(basename "$i")
  if [ -f "$profile"/etc/profile ]; then
    GUIX_PROFILE="$profile"
    . "$GUIX_PROFILE"/etc/profile
  fi
  unset profile
done