diff --git a/setup.sh b/setup.sh index 1e1875d..3ae04cf 100755 --- a/setup.sh +++ b/setup.sh @@ -139,7 +139,7 @@ install_nix() { curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix -o install-nix.sh || \ die "Failed to download Nix installer" - sh install-nix.sh install || die "Failed to install Nix" + sh install-nix.sh install --no-confirm || die "Failed to install Nix" rm install-nix.sh || die "Failed to remove Nix installer" . /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh || die "Failed to source Nix profile" } @@ -252,8 +252,8 @@ ensure_pipx() { sudo pacman -S python-pipx || die "Failed to install pipx" fi - # ensurepath globally - sudo pipx ensurepath --global || die "Failed to ensure pipx path" + # ensurepath + sudo pipx ensurepath || die "Failed to ensure pipx path" fi }