mirror of
https://github.com/nix-community/disko
synced 2024-11-10 14:24:27 +00:00
commit
c0623a47d8
1 changed files with 22 additions and 16 deletions
38
README.md
38
README.md
|
@ -19,23 +19,29 @@ let
|
||||||
ref = "master";
|
ref = "master";
|
||||||
}) {};
|
}) {};
|
||||||
cfg = {
|
cfg = {
|
||||||
type = "devices";
|
disk = {
|
||||||
content = {
|
|
||||||
sda = {
|
sda = {
|
||||||
type = "table";
|
device = "/dev/sda";
|
||||||
format = "msdos";
|
type = "device";
|
||||||
partitions = [{
|
content = {
|
||||||
type = "partition";
|
type = "table";
|
||||||
part-type = "primary";
|
format = "msdos";
|
||||||
start = "1M";
|
partitions = [
|
||||||
end = "100%";
|
{
|
||||||
bootable = true;
|
name = "root";
|
||||||
content = {
|
type = "partition";
|
||||||
type = "filesystem";
|
part-type = "primary";
|
||||||
format = "ext4";
|
start = "1M";
|
||||||
mountpoint = "/";
|
end = "100%";
|
||||||
};
|
bootable = true;
|
||||||
}];
|
content = {
|
||||||
|
type = "filesystem";
|
||||||
|
format = "ext4";
|
||||||
|
mountpoint = "/";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue