From 46afabbae7ac3717d66582df890943f9aa0df997 Mon Sep 17 00:00:00 2001 From: Menno van Leeuwen Date: Wed, 22 Jan 2025 15:55:44 +0100 Subject: [PATCH] refactor: correct Nix installation command to use 'sh install' for proper execution --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 6e46ef0..397680f 100755 --- a/setup.sh +++ b/setup.sh @@ -136,7 +136,7 @@ install_nix() { fi log_info "Nix not detected, installing Nix..." - curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh || die "Failed to install Nix" + curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh install || die "Failed to install Nix" 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."