- netboot-base.nix with SSH key auth - Launch scripts for node01/02/03 - Node configuration.nix and disko.nix - Nix modules for first-boot automation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
46 lines
834 B
Text
46 lines
834 B
Text
# Alpine Linux Answer File for Automated Installation
|
|
# For use with: setup-alpine -f alpine-answers.txt
|
|
|
|
# Keyboard layout
|
|
KEYMAPOPTS="us us"
|
|
|
|
# Hostname
|
|
HOSTNAMEOPTS="-n pxe-server"
|
|
|
|
# Network configuration
|
|
# eth0: multicast network (static 192.168.100.1)
|
|
# eth1: user network (DHCP for internet)
|
|
INTERFACESOPTS="auto lo
|
|
iface lo inet loopback
|
|
|
|
auto eth0
|
|
iface eth0 inet static
|
|
address 192.168.100.1
|
|
netmask 255.255.255.0
|
|
|
|
auto eth1
|
|
iface eth1 inet dhcp"
|
|
|
|
# DNS
|
|
DNSOPTS="8.8.8.8 8.8.4.4"
|
|
|
|
# Timezone
|
|
TIMEZONEOPTS="-z UTC"
|
|
|
|
# Proxy (none)
|
|
PROXYOPTS="none"
|
|
|
|
# APK mirror (auto-detect fastest)
|
|
APKREPOSOPTS="-f"
|
|
|
|
# SSH server
|
|
SSHDOPTS="-c openssh"
|
|
|
|
# NTP client
|
|
NTPOPTS="-c chrony"
|
|
|
|
# Disk mode (sys = traditional installation to disk)
|
|
DISKOPTS="-m sys /dev/vda"
|
|
|
|
# Additional packages to install
|
|
APKCACHEOPTS="/var/cache/apk"
|