From dc4971a63e32135b24fc119c34735e097bae1a41 Mon Sep 17 00:00:00 2001 From: 57_Wolve <57_wolve@private.email> Date: Wed, 14 Jan 2026 21:38:59 +0000 Subject: [PATCH] Update install.sh --- install.sh | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/install.sh b/install.sh index 521b13b..480194d 100644 --- a/install.sh +++ b/install.sh @@ -52,22 +52,6 @@ if ! command -v curl &> /dev/null; then fi fi -# Install xz-utils if not present (required for decompressing Nix tarball) -if ! command -v xz &> /dev/null; then - echo "Installing xz-utils..." - if command -v apt-get &> /dev/null; then - sudo apt-get update && sudo apt-get install -y xz-utils - elif command -v dnf &> /dev/null; then - sudo dnf install -y xz - elif command -v yum &> /dev/null; then - sudo yum install -y xz - elif command -v pacman &> /dev/null; then - sudo pacman -S --noconfirm xz - else - fatal "Please install xz-utils manually for your distribution" - fi -fi - # Install yq (required for config and templates) info "Installing yq..." if ! curl -sSL -o /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64; then @@ -77,9 +61,6 @@ else chmod +x /usr/local/bin/yq fi -# Download and run the Nix installer (multi-user mode with daemon) -curl --proto '=https' --tlsv1.2 -sSL https://nixos.org/nix/install | sh -s -- --daemon - } main() {