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";
}) {};
cfg = {
type = "devices";
content = {
disk = {
sda = {
device = "/dev/sda";
type = "device";
content = {
type = "table";
format = "msdos";
partitions = [{
partitions = [
{
name = "root";
type = "partition";
part-type = "primary";
start = "1M";
@ -35,7 +39,9 @@ let
format = "ext4";
mountpoint = "/";
};
}];
}
];
};
};
};
};