X-Git-Url: https://git.shemshak.org/~bandali/configs/blobdiff_plain/b91f8784733eb84a3050dcdfa9b5a1881ddc50e7..5b4b57a9b114fb1d57cde09bc9ad7a02d3fb10e1:/.profile diff --git a/.profile b/.profile index 883d1a7..8df286c 100644 --- a/.profile +++ b/.profile @@ -10,17 +10,28 @@ fi export EDITOR="emacsclient -nw" export VISUAL="emcl" -PATH="$HOME/bin:$HOME/.local/bin:$PATH" +PATH="$HOME/usr/local/bin:$HOME/.local/bin:$PATH" PATH="$HOME/.cabal/bin:$HOME/.cargo/bin:$HOME/.elan/bin:$PATH" if [ -z "$IS_GUIX_SYSTEM" ]; then PATH="$HOME/.config/guix/current/bin${PATH:+:}$PATH" + INFOPATH="$HOME/.config/guix/current/share/info${INFOPATH:+:}$INFOPATH" export GUIX_LOCPATH="$HOME/.guix-profile/lib/locale" 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" +if [ -f "$HOME/.config/user-dirs.dirs" ]; then + set -a + . "$HOME/.config/user-dirs.dirs" + set +a +fi + export INPUTRC="$XDG_CONFIG_HOME"/readline/inputrc export SCREENRC="$XDG_CONFIG_HOME"/screen/screenrc @@ -49,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 @@ -62,15 +83,6 @@ if [ -z "$IS_GUIX_SYSTEM" ]; then fi fi -setxkbmap \ - -layout us,ir \ - -option ctrl:nocaps \ - -option grp:shifts_toggle - -xmodmap -e "keysym Menu = Super_R" - -xrdb -merge "$HOME/.Xresources" - # footenote: when on a foreign distro and using Xfce, don't forget to # disable its auto-start of gpg- and ssh-agent, by issuing # xfconf-query -c xfce4-session -p /startup/ssh-agent/enabled -n -t bool -s false