From 4509d84f1064e4e57994dc95187754825754ac0d Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 3 Sep 2023 15:45:45 -0400 Subject: [PATCH] Update to Nix 2.17.0 --- install-nix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-nix.sh b/install-nix.sh index 536783c..d0e094a 100755 --- a/install-nix.sh +++ b/install-nix.sh @@ -70,7 +70,7 @@ echo "installer options: ${installer_options[*]}" # There is --retry-on-errors, but only newer curl versions support that curl_retries=5 -while ! curl -sS -o "$workdir/install" -v --fail -L "${INPUT_INSTALL_URL:-https://releases.nixos.org/nix/nix-2.16.1/install}" +while ! curl -sS -o "$workdir/install" -v --fail -L "${INPUT_INSTALL_URL:-https://releases.nixos.org/nix/nix-2.17.0/install}" do sleep 1 ((curl_retries--))