From 4a461eb974be53a4db2c1c7a681c8baa2381fc94 Mon Sep 17 00:00:00 2001 From: "Andrew R. M" Date: Tue, 20 May 2025 18:03:39 +0000 Subject: [PATCH] More specifically identify if nix is installed --- installers/install-nix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/install-nix.sh b/installers/install-nix.sh index d0c2614..2f9ac14 100755 --- a/installers/install-nix.sh +++ b/installers/install-nix.sh @@ -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