diff options
Diffstat (limited to 'home-dots/dot-profile')
-rw-r--r-- | home-dots/dot-profile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/home-dots/dot-profile b/home-dots/dot-profile index c2f3182..f156b80 100644 --- a/home-dots/dot-profile +++ b/home-dots/dot-profile @@ -1 +1,8 @@ -. "$HOME/.cargo/env" +#!/bin/sh +export PATH="$HOME/.local/bin:$HOME/dev/dotfiles/bin:$PATH" +[ -f "$HOME/.ghcup/env" ] && source "$HOME/.ghcup/env" # ghcup-env +source "$HOME/.cargo/env" +# GUIX_PROFILE="$HOME/.guix-profile" && [ -e "$GUIX_PROFILE" ] && . "$GUIX_PROFILE/etc/profile" && export GUIX_LOCPATH=$GUIX_PROFILE/lib/locale +# GUIX_PROFILE="$HOME/.config/guix/current" && [ -e "$GUIX_PROFILE" ] && . "$GUIX_PROFILE/etc/profile" +# export SSL_CERT_DIR="$HOME/.guix-profile/etc/ssl/certs" +# export SSL_CERT_FILE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt" |