mirror of
https://github.com/TECHNOFAB11/disko.git
synced 2025-12-11 23:50:05 +01:00
README: fix example
This commit is contained in:
parent
68f950bf20
commit
077e6d4f60
1 changed files with 22 additions and 16 deletions
14
README.md
14
README.md
|
|
@ -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 = "/";
|
||||||
};
|
};
|
||||||
}];
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue