More specifically identify if nix is installed

This commit is contained in:
Andrew R. M 2025-05-20 18:03:39 +00:00 committed by anmiller
parent a6257ed7d1
commit 4a461eb974

View File

@ -7,7 +7,7 @@ set -e
set -x
# Abort installation if Nix is already installed
if [ -d /nix ]; then
if [ -d /nix/store ]; then
exit 0
fi