disko/example/mdadm.nix

68 lines
1.3 KiB
Nix
Raw Normal View History

2022-08-24 16:46:36 +02:00
{
disk = {
2022-08-24 16:46:36 +02:00
vdb = {
type = "disk";
device = "/dev/vdb";
content = {
type = "table";
format = "gpt";
partitions = [
{
type = "partition";
name = "mdadm";
start = "1MiB";
end = "100%";
content = {
type = "mdraid";
name = "raid1";
};
}
];
};
2022-08-24 16:46:36 +02:00
};
vdc = {
type = "disk";
device = "/dev/vdc";
content = {
type = "table";
format = "gpt";
partitions = [
{
type = "partition";
name = "mdadm";
start = "1MiB";
end = "100%";
content = {
type = "mdraid";
name = "raid1";
};
}
];
};
2022-08-24 16:46:36 +02:00
};
};
mdadm = {
2022-08-24 16:46:36 +02:00
raid1 = {
type = "mdadm";
level = 1;
content = {
type = "table";
format = "gpt";
partitions = [
{
type = "partition";
name = "primary";
2022-08-24 16:46:36 +02:00
start = "1MiB";
end = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/raid";
};
}
];
};
};
};
}