From e5118737afd91d5e01f8ec8e88691b2e38687432 Mon Sep 17 00:00:00 2001 From: randogoth Date: Sun, 1 Feb 2026 19:53:04 +0200 Subject: [PATCH] Default installer hostname to nanuqsaurus --- scripts/install-btrfs.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/install-btrfs.sh b/scripts/install-btrfs.sh index 99cabd5..a46968f 100755 --- a/scripts/install-btrfs.sh +++ b/scripts/install-btrfs.sh @@ -14,7 +14,7 @@ fi DISK=${DISK:-/dev/vda} # full-disk target ROOT_PART=${ROOT_PART:-} # optional existing root partition BOOT_PART=${BOOT_PART:-} # optional existing boot (FAT) partition -HOSTNAME=${HOSTNAME:-nixos} +HOSTNAME=${HOSTNAME:-nanuqsaurus} USE_LUKS=${USE_LUKS:-0} # 1 to encrypt root SWAP_GB=${SWAP_GB:-0} # swap size in GB, 0 disables @@ -100,7 +100,6 @@ if (( ! NON_INTERACTIVE )); then [[ "$USE_LUKS" == "yes" ]] && USE_LUKS=1 || USE_LUKS=0 SWAP_GB=$(prompt_input "Swap size in GB (0 = none)" "${SWAP_GB}") - HOSTNAME=$(prompt_input "Hostname" "${HOSTNAME}") fi echo "[0/8] Summary:"