zsh: fix the guard variable for /etc/set-environment
This guard variable is written to $out/etc/zshenv using here-documents, so we need to escape it.
This commit is contained in:
parent
4929fad3c7
commit
43f45fe24f
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ if test -e /etc/NIXOS; then
|
|||
else
|
||||
emulate bash
|
||||
alias shopt=false
|
||||
if [ -z "$__NIXOS_SET_ENVIRONMENT_DONE" ]; then
|
||||
if [ -z "\$__NIXOS_SET_ENVIRONMENT_DONE" ]; then
|
||||
. /etc/set-environment
|
||||
fi
|
||||
unalias shopt
|
||||
|
|
Loading…
Reference in a new issue