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;
type = "disk";
content = {
type = "table";
format = "gpt";
partitions = [
{
name = "ESP";
start = "1MiB";
end = "100MiB";
bootable = true;
type = "table_gpt";
partitions = {
ESP = {
type = "EF00";
start = "1M";
end = "+100M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
}
{
name = "root";
start = "100MiB";
end = "100%";
part-type = "primary";
bootable = true;
};
root = {
end = "-0";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
}
];
};
};
};
};
};