everywhere-config/disk-config.nix

91 lines
1.9 KiB
Nix
Raw Normal View History

2025-05-13 11:09:08 +00:00
{
2025-05-15 08:54:57 +00:00
disko.devices = {
disk = {
one = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
BOOT = {
size = "1M";
type = "EF02"; # for grub MBR
2025-05-14 14:51:54 +00:00
};
2025-05-15 08:54:57 +00:00
ESP = {
size = "500M";
type = "EF00";
content = {
type = "mdraid";
name = "boot";
};
};
mdadm = {
size = "100%";
content = {
type = "mdraid";
name = "raid1";
};
2025-05-13 11:09:08 +00:00
};
};
2025-05-14 14:51:54 +00:00
};
};
2025-05-15 08:54:57 +00:00
two = {
type = "disk";
device = "/dev/sdb";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02"; # for grub MBR
};
ESP = {
size = "500M";
type = "EF00";
content = {
type = "mdraid";
name = "boot";
};
};
mdadm = {
size = "100%";
content = {
type = "mdraid";
name = "raid1";
};
};
};
2025-05-13 11:09:08 +00:00
};
};
2025-05-15 08:54:57 +00:00
};
mdadm = {
boot = {
type = "mdadm";
level = 1;
metadata = "1.0";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "umask=0077" ];
2025-05-14 14:51:54 +00:00
};
};
2025-05-15 08:54:57 +00:00
raid1 = {
type = "mdadm";
level = 1;
content = {
type = "gpt";
partitions.primary = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
2025-05-13 11:09:08 +00:00
};
};
};
};
2025-05-15 08:54:57 +00:00
};
2025-05-15 08:15:06 +00:00
}