2016-04-10 21:23:16 +00:00
|
|
|
if [ -n "$HOME" ] && [ -n "$USER" ]; then
|
|
|
|
|
|
|
|
# Set up the per-user profile.
|
|
|
|
|
2021-11-17 20:35:21 +00:00
|
|
|
NIX_LINK="$HOME/.nix-profile"
|
2023-02-28 18:09:55 +00:00
|
|
|
if [ -n "${XDG_STATE_HOME-}" ]; then
|
2021-11-17 20:35:21 +00:00
|
|
|
NIX_LINK_NEW="$XDG_STATE_HOME/nix/profile"
|
|
|
|
else
|
|
|
|
NIX_LINK_NEW="$HOME/.local/state/nix/profile"
|
|
|
|
fi
|
2023-03-01 00:10:42 +00:00
|
|
|
if [ -e "$NIX_LINK_NEW" ]; then
|
2021-11-17 20:35:21 +00:00
|
|
|
NIX_LINK="$NIX_LINK_NEW"
|
|
|
|
else
|
|
|
|
if [ -t 2 ] && [ -e "$NIX_LINK_NEW" ]; then
|
|
|
|
warning="\033[1;35mwarning:\033[0m"
|
|
|
|
printf "$warning Both %s and legacy %s exist; using the latter.\n" "$NIX_LINK_NEW" "$NIX_LINK" 1>&2
|
|
|
|
if [ "$(realpath "$NIX_LINK")" = "$(realpath "$NIX_LINK_NEW")" ]; then
|
|
|
|
printf " Since the profiles match, you can safely delete either of them.\n" 1>&2
|
|
|
|
else
|
|
|
|
# This should be an exceptionally rare occasion: the only way to get it would be to
|
|
|
|
# 1. Update to newer Nix;
|
|
|
|
# 2. Remove .nix-profile;
|
|
|
|
# 3. Set the $NIX_LINK_NEW to something other than the default user profile;
|
|
|
|
# 4. Roll back to older Nix.
|
|
|
|
# If someone did all that, they can probably figure out how to migrate the profile.
|
|
|
|
printf "$warning Profiles do not match. You should manually migrate from %s to %s.\n" "$NIX_LINK" "$NIX_LINK_NEW" 1>&2
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
2016-04-10 21:23:16 +00:00
|
|
|
|
|
|
|
# Set up environment.
|
|
|
|
# This part should be kept in sync with nixpkgs:nixos/modules/programs/environment.nix
|
2021-11-17 20:35:21 +00:00
|
|
|
export NIX_PROFILES="@localstatedir@/nix/profiles/default $NIX_LINK"
|
2016-04-10 21:23:16 +00:00
|
|
|
|
2023-09-15 17:49:30 +00:00
|
|
|
# Populate bash completions, .desktop files, etc
|
|
|
|
if [ -n "${XDG_DATA_DIRS-}" ]; then
|
|
|
|
# According to XDG spec the default is /usr/local/share:/usr/share, don't set something that prevents that default
|
|
|
|
export XDG_DATA_DIRS="/usr/local/share:/usr/share:$NIX_LINK/share:/nix/var/nix/profiles/default/share"
|
|
|
|
else
|
|
|
|
export XDG_DATA_DIRS="$XDG_DATA_DIRS:$NIX_LINK/share:/nix/var/nix/profiles/default/share"
|
|
|
|
fi
|
|
|
|
|
2016-10-13 15:09:10 +00:00
|
|
|
# Set $NIX_SSL_CERT_FILE so that Nixpkgs applications like curl work.
|
2015-06-08 09:40:35 +00:00
|
|
|
if [ -e /etc/ssl/certs/ca-certificates.crt ]; then # NixOS, Ubuntu, Debian, Gentoo, Arch
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
|
2016-02-12 12:26:19 +00:00
|
|
|
elif [ -e /etc/ssl/ca-bundle.pem ]; then # openSUSE Tumbleweed
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/ssl/ca-bundle.pem
|
2015-06-08 09:40:35 +00:00
|
|
|
elif [ -e /etc/ssl/certs/ca-bundle.crt ]; then # Old NixOS
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/ssl/certs/ca-bundle.crt
|
2015-06-08 09:40:35 +00:00
|
|
|
elif [ -e /etc/pki/tls/certs/ca-bundle.crt ]; then # Fedora, CentOS
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/pki/tls/certs/ca-bundle.crt
|
2015-06-08 09:40:35 +00:00
|
|
|
elif [ -e "$NIX_LINK/etc/ssl/certs/ca-bundle.crt" ]; then # fall back to cacert in Nix profile
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE="$NIX_LINK/etc/ssl/certs/ca-bundle.crt"
|
2015-06-08 09:40:35 +00:00
|
|
|
elif [ -e "$NIX_LINK/etc/ca-bundle.crt" ]; then # old cacert in Nix profile
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE="$NIX_LINK/etc/ca-bundle.crt"
|
2014-07-29 15:11:54 +00:00
|
|
|
fi
|
2016-04-10 21:23:16 +00:00
|
|
|
|
2022-02-21 12:35:51 +00:00
|
|
|
# Only use MANPATH if it is already set. In general `man` will just simply
|
|
|
|
# pick up `.nix-profile/share/man` because is it close to `.nix-profile/bin`
|
|
|
|
# which is in the $PATH. For more info, run `manpath -d`.
|
2019-02-14 18:24:16 +00:00
|
|
|
if [ -n "${MANPATH-}" ]; then
|
2016-07-29 10:00:11 +00:00
|
|
|
export MANPATH="$NIX_LINK/share/man:$MANPATH"
|
|
|
|
fi
|
|
|
|
|
2019-10-09 17:38:01 +00:00
|
|
|
export PATH="$NIX_LINK/bin:$PATH"
|
2021-11-17 20:35:21 +00:00
|
|
|
unset NIX_LINK NIX_LINK_NEW
|
2008-11-20 17:22:42 +00:00
|
|
|
fi
|