Scaffolds a NixOS flake for ringtail (gaming/compute workstation, RTX 4080): - Declarative disk partitioning via disko (GPT, EFI + ext4 on NVMe) - NVIDIA proprietary drivers with CUDA support - Sway/Wayland desktop with greetd, PipeWire audio, Steam - Tailscale for tailnet connectivity - Ansible playbook + mise task for ongoing provisioning via nixos-rebuild - Pulumi auth key for tailnet bootstrap (tag:homelab, tag:blumeops) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
203 B
Bash
Executable file
9 lines
203 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#MISE description="Run ansible playbook to provision ringtail (NixOS)"
|
|
|
|
set -euo pipefail
|
|
|
|
export MISE_TASK_OUTPUT=interleave
|
|
|
|
cd ansible
|
|
ansible-playbook playbooks/ringtail.yml "$@"
|