blumeops/nixos/ringtail/disk-config.nix
Erich Blume c8aec1e2a2 Add NixOS configuration for ringtail workstation
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>
2026-02-18 08:07:19 -08:00

33 lines
727 B
Nix

{
disko.devices = {
disk = {
nvme = {
type = "disk";
device = "/dev/nvme0n1";
content = {
type = "gpt";
partitions = {
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "umask=0077" ];
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}