mirror of
https://github.com/NixOS/nix
synced 2025-06-24 22:11:15 +02:00
nix-profile.sh.in: fix envvar condition
This commit is contained in:
parent
3df1658ba1
commit
97fffd8765
1 changed files with 2 additions and 2 deletions
|
@ -1,9 +1,9 @@
|
||||||
# This file is tested by tests/installer/default.nix.
|
# This file is tested by tests/installer/default.nix.
|
||||||
if [ -n "$HOME" ] && [ -n "$USER" ]; then
|
if [ -n "${HOME-}" ] && [ -n "${USER-}" ]; then
|
||||||
|
|
||||||
# Set up the per-user profile.
|
# Set up the per-user profile.
|
||||||
|
|
||||||
if [ -n "$NIX_STATE_HOME" ]; then
|
if [ -n "${NIX_STATE_HOME-}" ]; then
|
||||||
NIX_LINK="$NIX_STATE_HOME/profile"
|
NIX_LINK="$NIX_STATE_HOME/profile"
|
||||||
else
|
else
|
||||||
NIX_LINK="$HOME/.nix-profile"
|
NIX_LINK="$HOME/.nix-profile"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue