X-Git-Url: https://git.shemshak.org/~bandali/configs/blobdiff_plain/8e0e429770ca3b727cc4b9cd321421201bdff019..89d937abcfe39193c9fc5409a379323392609eb7:/.profile diff --git a/.profile b/.profile index b419e55..8df286c 100644 --- a/.profile +++ b/.profile @@ -20,6 +20,9 @@ fi export PATH export INFOPATH +export MY_GUIX_MANIFESTS="$HOME/.config/guix/manifest" +export MY_GUIX_PROFILES="$HOME/.config/guix/profile" + export XDG_CONFIG_HOME="$HOME/.config" export XDG_DATA_HOME="$HOME/.local/share" @@ -57,9 +60,19 @@ if [ -z "$IS_GUIX_SYSTEM" ]; then fi GUIX_PROFILE="$HOME/.guix-profile" . "$GUIX_PROFILE/etc/profile" + unset XDG_DATA_DIRS fi fi +for p in $MY_GUIX_PROFILES/*; do + profile=$p/$(basename "$p") + if [ -f "$profile"/etc/profile ]; then + GUIX_PROFILE="$profile" + . "$GUIX_PROFILE"/etc/profile + fi + unset profile +done + # start an ssh-agent (with guix's openssh) if [ -z "$IS_GUIX_SYSTEM" ]; then if ! pgrep -u "$USER" ssh-agent > /dev/null; then