example simple-efi: use table_gpt

This commit is contained in:
lassulus 2023-06-07 13:54:53 +02:00
parent c230584db3
commit aca7f18667

View file

@ -5,33 +5,27 @@
device = builtins.elemAt disks 0; device = builtins.elemAt disks 0;
type = "disk"; type = "disk";
content = { content = {
type = "table"; type = "table_gpt";
format = "gpt"; partitions = {
partitions = [ ESP = {
{ type = "EF00";
name = "ESP"; start = "1M";
start = "1MiB"; end = "+100M";
end = "100MiB";
bootable = true;
content = { content = {
type = "filesystem"; type = "filesystem";
format = "vfat"; format = "vfat";
mountpoint = "/boot"; mountpoint = "/boot";
}; };
} };
{ root = {
name = "root"; end = "-0";
start = "100MiB";
end = "100%";
part-type = "primary";
bootable = true;
content = { content = {
type = "filesystem"; type = "filesystem";
format = "ext4"; format = "ext4";
mountpoint = "/"; mountpoint = "/";
}; };
} };
]; };
}; };
}; };
}; };