From 120a328bbb39159392844b1773d30274b79e28c8 Mon Sep 17 00:00:00 2001 From: 57_Wolve <57_wolve@private.email> Date: Wed, 14 Jan 2026 17:35:15 +0000 Subject: [PATCH] Add scripts/bootstrap.sh --- scripts/bootstrap.sh | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 scripts/bootstrap.sh diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh new file mode 100644 index 0000000..de2c453 --- /dev/null +++ b/scripts/bootstrap.sh @@ -0,0 +1,38 @@ +#!/bin/bash + +set -e + +echo "Installing Nix package manager..." + +# Check if running as root +if [ "$EUID" -eq 0 ]; then + echo "Warning: Running as root. Multi-user installation recommended for non-root users." +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 + echo "Please install xz-utils manually for your distribution" + exit 1 + fi +fi + +# Download and run the Nix installer (multi-user mode with daemon) +curl -L https://nixos.org/nix/install | sh -s -- --daemon + +# Source Nix profile +if [ -f /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh ]; then + . /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh +fi + +echo "Nix installation complete!" +echo "Please restart your shell or run: source /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh"