example gpt-bios-compat: use new gpt type

This commit is contained in:
lassulus 2023-07-04 16:01:32 +02:00 committed by mergify[bot]
parent c9c2fa9d3a
commit 15c4d57b41

View file

@ -6,30 +6,21 @@
device = builtins.elemAt disks 0; device = builtins.elemAt disks 0;
type = "disk"; type = "disk";
content = { content = {
type = "table"; type = "gpt";
format = "gpt"; partitions = {
partitions = [ boot = {
{ size = "1M";
name = "boot"; type = "EF02";
start = "0"; };
end = "1M"; root = {
part-type = "primary"; size = "100%";
flags = [ "bios_grub" ];
}
{
name = "root";
# leave space for the grub aka BIOS boot
start = "1M";
end = "100%";
part-type = "primary";
bootable = true;
content = { content = {
type = "filesystem"; type = "filesystem";
format = "ext4"; format = "ext4";
mountpoint = "/"; mountpoint = "/";
}; };
} };
]; };
}; };
}; };
}; };