aboutsummaryrefslogtreecommitdiffstats
path: root/roles/local_homedirs/files/etc/profile.d/local-homedirs.sh
blob: 439d88846422cca2fe4355a7aba750140905da88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This file contains various environment variables and hacks to accomodate
# applications that don't play well with NFS-mounted home directories.

if (( UID >= 1000 )); then
  export PYTHONUSERBASE="/usr/local/home/${USER}/.local"
  export npm_config_cache="/usr/local/home/${USER}/.npm"
  export CARGO_HOME="/usr/local/home/${USER}/.cargo"
  export GOPATH="/usr/local/home/${USER}/go"

  # firefox
  mkdir -p "/usr/local/home/${USER}/.mozilla"
  ln -sfn "/usr/local/home/${USER}/.mozilla" "${HOME}/.mozilla"

  # flatpak
  ln -sfn "/opt/flatpak/${USER}" "${HOME}/.var"

  # kwallet
  if [ -f "${HOME}/.local/share/kwalletd/kdewallet.salt" ]; then
    mkdir -p "/usr/local/home/${USER}/.local/share/kwalletd"
    ln -sfn "${HOME}/.local/share/kwalletd/kdewallet.salt" "/usr/local/home/${USER}/.local/share/kwalletd/kdewallet.salt"
  fi
fi