netboot.nix/pkgs/disko/example/legacy-table-with-whitespace.nix
2024-12-29 21:35:58 -05:00

51 lines
1.2 KiB
Nix

{
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 = "/";
};
}
];
};
};
};
};
}