README: fix example

This commit is contained in:
Jörg Thalheim 2022-09-04 13:12:43 +02:00
parent 68f950bf20
commit 077e6d4f60

View file

@ -19,12 +19,16 @@ let
ref = "master"; ref = "master";
}) {}; }) {};
cfg = { cfg = {
type = "devices"; disk = {
content = {
sda = { sda = {
device = "/dev/sda";
type = "device";
content = {
type = "table"; type = "table";
format = "msdos"; format = "msdos";
partitions = [{ partitions = [
{
name = "root";
type = "partition"; type = "partition";
part-type = "primary"; part-type = "primary";
start = "1M"; start = "1M";
@ -35,7 +39,9 @@ let
format = "ext4"; format = "ext4";
mountpoint = "/"; mountpoint = "/";
}; };
}]; }
];
};
}; };
}; };
}; };