{ disks ? [ "/dev/vdb" ], ... }: { disko.devices = { disk = { vdb = { device = builtins.elemAt disks 0; type = "disk"; content = { type = "gpt"; partitions = { ESP = { type = "EF00"; size = "1000M"; content = { type = "filesystem"; format = "vfat"; mountpoint = "/boot"; }; }; root = { size = "100%"; content = { type = "filesystem"; format = "ext4"; mountpoint = "/"; }; }; }; }; }; }; }; }