refactor: update Nix installation script to use a more reliable source
All checks were successful
Nix Format Check / check-format (push) Successful in 38s

This commit is contained in:
Menno van Leeuwen 2025-01-22 15:54:29 +01:00
parent 4cad585fee
commit 195371b9bf
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE

View File

@ -136,9 +136,7 @@ install_nix() {
fi fi
log_info "Nix not detected, installing Nix..." log_info "Nix not detected, installing Nix..."
if ! sh <(curl -L https://nixos.org/nix/install) --daemon; then curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh || die "Failed to install Nix"
die "Failed to install Nix"
fi
log_success "Nix has been installed. Please open a new shell and re-run the script." log_success "Nix has been installed. Please open a new shell and re-run the script."
log_info "'~/dotfiles/setup.sh --continue' to continue setup." log_info "'~/dotfiles/setup.sh --continue' to continue setup."