disko/example/boot-raid1.nix

95 lines
2 KiB
Nix
Raw Normal View History

2022-10-21 14:43:55 +02:00
{ disks ? [ "/dev/vdb" "/dev/vdc" ], ... }: {
disko.devices = {
disk = {
one = {
type = "disk";
device = builtins.elemAt disks 0;
content = {
2023-06-16 21:34:15 +02:00
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02";
};
ESP = {
size = "128M";
type = "EF00";
content = {
type = "mdraid";
name = "boot";
};
2023-06-16 21:34:15 +02:00
};
mdadm = {
size = "100%";
content = {
type = "mdraid";
name = "raid1";
};
2023-06-16 21:34:15 +02:00
};
};
};
};
two = {
type = "disk";
device = builtins.elemAt disks 1;
content = {
2023-06-16 21:34:15 +02:00
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02";
};
ESP = {
size = "128M";
type = "EF00";
content = {
type = "mdraid";
name = "boot";
};
2023-06-16 21:34:15 +02:00
};
mdadm = {
size = "100%";
content = {
type = "mdraid";
name = "raid1";
};
2023-06-16 21:34:15 +02:00
};
};
};
};
};
mdadm = {
boot = {
type = "mdadm";
level = 1;
metadata = "1.0";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
raid1 = {
type = "mdadm";
level = 1;
content = {
type = "table";
format = "gpt";
partitions = [
{
name = "primary";
start = "1MiB";
end = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
}
];
};
};
};
};
}