# Example to create a bios compatible gpt partition { disks ? [ "/dev/vdb" ], ... }: { disko.devices = { disk = { vdb = { device = builtins.elemAt disks 0; type = "disk"; content = { type = "gpt"; partitions = { boot = { size = "1M"; type = "EF02"; }; root = { size = "100%"; content = { type = "filesystem"; format = "ext4"; mountpoint = "/"; }; }; }; }; }; }; }; }