2023-12-29 09:14:53 +02:00
|
|
|
# This file is tested by tests/installer/default.nix.
|
2016-04-11 00:23:16 +03:00
|
|
|
if [ -n "$HOME" ] && [ -n "$USER" ]; then
|
|
|
|
|
|
|
|
# Set up the per-user profile.
|
|
|
|
|
2021-11-17 22:35:21 +02:00
|
|
|
NIX_LINK="$HOME/.nix-profile"
|
2023-02-28 20:09:55 +02:00
|
|
|
if [ -n "${XDG_STATE_HOME-}" ]; then
|
2021-11-17 22:35:21 +02:00
|
|
|
NIX_LINK_NEW="$XDG_STATE_HOME/nix/profile"
|
|
|
|
else
|
|
|
|
NIX_LINK_NEW="$HOME/.local/state/nix/profile"
|
|
|
|
fi
|
2023-03-01 02:10:42 +02:00
|
|
|
if [ -e "$NIX_LINK_NEW" ]; then
|
2023-12-11 05:14:51 +02:00
|
|
|
if [ -t 2 ] && [ -e "$NIX_LINK" ]; then
|
2021-11-17 22:35:21 +02:00
|
|
|
warning="\033[1;35mwarning:\033[0m"
|
2023-12-11 05:14:51 +02:00
|
|
|
printf "$warning Both %s and legacy %s exist; using the former.\n" "$NIX_LINK_NEW" "$NIX_LINK" 1>&2
|
2021-11-17 22:35:21 +02:00
|
|
|
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
|
2023-12-11 05:14:51 +02:00
|
|
|
NIX_LINK="$NIX_LINK_NEW"
|
2021-11-17 22:35:21 +02:00
|
|
|
fi
|
2016-04-11 00:23:16 +03:00
|
|
|
|
|
|
|
# Set up environment.
|
|
|
|
# This part should be kept in sync with nixpkgs:nixos/modules/programs/environment.nix
|
2021-11-17 22:35:21 +02:00
|
|
|
export NIX_PROFILES="@localstatedir@/nix/profiles/default $NIX_LINK"
|
2016-04-11 00:23:16 +03:00
|
|
|
|
2023-09-15 20:49:30 +03:00
|
|
|
# Populate bash completions, .desktop files, etc
|
2023-11-21 15:49:48 +02:00
|
|
|
if [ -z "${XDG_DATA_DIRS-}" ]; then
|
2023-09-15 20:49:30 +03:00
|
|
|
# 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 18:09:10 +03:00
|
|
|
# Set $NIX_SSL_CERT_FILE so that Nixpkgs applications like curl work.
|
2015-06-08 12:40:35 +03:00
|
|
|
if [ -e /etc/ssl/certs/ca-certificates.crt ]; then # NixOS, Ubuntu, Debian, Gentoo, Arch
|
2016-10-13 18:09:10 +03:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
|
2016-02-12 14:26:19 +02:00
|
|
|
elif [ -e /etc/ssl/ca-bundle.pem ]; then # openSUSE Tumbleweed
|
2016-10-13 18:09:10 +03:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/ssl/ca-bundle.pem
|
2015-06-08 12:40:35 +03:00
|
|
|
elif [ -e /etc/ssl/certs/ca-bundle.crt ]; then # Old NixOS
|
2016-10-13 18:09:10 +03:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/ssl/certs/ca-bundle.crt
|
2015-06-08 12:40:35 +03:00
|
|
|
elif [ -e /etc/pki/tls/certs/ca-bundle.crt ]; then # Fedora, CentOS
|
2016-10-13 18:09:10 +03:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/pki/tls/certs/ca-bundle.crt
|
2015-06-08 12:40:35 +03:00
|
|
|
elif [ -e "$NIX_LINK/etc/ssl/certs/ca-bundle.crt" ]; then # fall back to cacert in Nix profile
|
2016-10-13 18:09:10 +03:00
|
|
|
export NIX_SSL_CERT_FILE="$NIX_LINK/etc/ssl/certs/ca-bundle.crt"
|
2015-06-08 12:40:35 +03:00
|
|
|
elif [ -e "$NIX_LINK/etc/ca-bundle.crt" ]; then # old cacert in Nix profile
|
2016-10-13 18:09:10 +03:00
|
|
|
export NIX_SSL_CERT_FILE="$NIX_LINK/etc/ca-bundle.crt"
|
2014-07-29 18:11:54 +03:00
|
|
|
fi
|
2016-04-11 00:23:16 +03:00
|
|
|
|
2022-02-21 14:35:51 +02: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 20:24:16 +02:00
|
|
|
if [ -n "${MANPATH-}" ]; then
|
2016-07-29 13:00:11 +03:00
|
|
|
export MANPATH="$NIX_LINK/share/man:$MANPATH"
|
|
|
|
fi
|
|
|
|
|
2019-10-09 20:38:01 +03:00
|
|
|
export PATH="$NIX_LINK/bin:$PATH"
|
2021-11-17 22:35:21 +02:00
|
|
|
unset NIX_LINK NIX_LINK_NEW
|
2008-11-20 19:22:42 +02:00
|
|
|
fi
|