disko/example/boot-raid1.nix

91 lines
1.9 KiB
Nix
Raw Normal View History

{
disko.devices = {
disk = {
one = {
type = "disk";
device = "/dev/sda";
content = {
2023-06-16 22:34:15 +03:00
type = "gpt";
partitions = {
BOOT = {
2023-06-16 22:34:15 +03:00
size = "1M";
2023-07-21 15:28:58 +03:00
type = "EF02"; # for grub MBR
2023-06-16 22:34:15 +03:00
};
ESP = {
size = "500M";
2023-06-16 22:34:15 +03:00
type = "EF00";
content = {
type = "mdraid";
name = "boot";
};
2023-06-16 22:34:15 +03:00
};
mdadm = {
size = "100%";
content = {
type = "mdraid";
name = "raid1";
};
2023-06-16 22:34:15 +03:00
};
};
};
};
two = {
type = "disk";
device = "/dev/sdb";
content = {
2023-06-16 22:34:15 +03:00
type = "gpt";
partitions = {
boot = {
size = "1M";
2023-07-21 15:28:58 +03:00
type = "EF02"; # for grub MBR
priority = 1; # Needs to be first partition
2023-06-16 22:34:15 +03:00
};
ESP = {
size = "500M";
2023-06-16 22:34:15 +03:00
type = "EF00";
content = {
type = "mdraid";
name = "boot";
};
2023-06-16 22:34:15 +03:00
};
mdadm = {
size = "100%";
content = {
type = "mdraid";
name = "raid1";
};
2023-06-16 22:34:15 +03:00
};
};
};
};
};
mdadm = {
boot = {
type = "mdadm";
level = 1;
metadata = "1.0";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
raid1 = {
type = "mdadm";
level = 1;
content = {
type = "gpt";
partitions.primary = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
}