{ disk, ... }: { disk = { main = { type = "disk"; device = disk; content = { type = "table"; format = "gpt"; partitions = [ { name = "boot"; type = "partition"; start = "0"; end = "1M"; flags = ["bios_grub"]; } { type = "partition"; name = "ESP"; start = "1M"; end = "512M"; bootable = true; content = { type = "filesystem"; format = "vfat"; mountpoint = "/boot"; }; } { type = "partition"; name = "root"; start = "512M"; end = "100%"; content = { type = "filesystem"; format = "ext4"; mountpoint = "/"; }; } ]; }; }; }; }