- 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>
20 lines
436 B
Text
20 lines
436 B
Text
#!ipxe
|
|
|
|
# PlasmaCloud Netboot - control-plane
|
|
# Generated: 2025-12-10 21:58:15 UTC
|
|
|
|
# Set variables
|
|
set boot-server ${boot-url}
|
|
|
|
# Display info
|
|
echo Loading PlasmaCloud (control-plane profile)...
|
|
echo Kernel: bzImage
|
|
echo Initrd: initrd
|
|
echo
|
|
|
|
# Load kernel and initrd
|
|
kernel ${boot-server}/control-plane/bzImage init=/nix/store/*/init console=ttyS0,115200 console=tty0 loglevel=4
|
|
initrd ${boot-server}/control-plane/initrd
|
|
|
|
# Boot
|
|
boot
|