{ disko.devices = { disk = { vdb = { device = "/dev/sda"; type = "disk"; content = { type = "table"; format = "gpt"; partitions = [ { name = "ESP"; start = "1MiB"; end = "100MiB"; bootable = true; content = { type = "filesystem"; format = "vfat"; mountpoint = "/boot"; }; } { name = "name with spaces"; start = "100MiB"; end = "200MiB"; bootable = true; content = { type = "filesystem"; format = "vfat"; mountpoint = "/name_with_spaces"; }; } { name = "root"; start = "200MiB"; end = "100%"; part-type = "primary"; bootable = true; content = { type = "filesystem"; format = "ext4"; mountpoint = "/"; }; } ]; }; }; }; }; }