57 lines
1.5 KiB
Nix
57 lines
1.5 KiB
Nix
# Data mirror disks
|
|
"content-1" = {
|
|
type = "disk";
|
|
device = "/dev/disk/by-id/ata-FUJITSU_MHW2120BH_NZ2TT772DCN5";
|
|
content = {
|
|
type = "gpt";
|
|
partitions = {
|
|
"data-1" = {
|
|
size = "$PARTITION_SIZE";
|
|
content = {
|
|
type = "luks";
|
|
name = "crypted-content-1";
|
|
settings.keyFile = "/etc/secrets/disks/content-1";
|
|
content = {
|
|
type = "mdraid";
|
|
name = "data-storage";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
"parity-1" = {
|
|
type = "disk";
|
|
device = "/dev/disk/by-id/ata-TOSHIBA_MQ04ABF100_X7CXT0D8T";
|
|
content = {
|
|
type = "gpt";
|
|
partitions = {
|
|
"parity-1" = {
|
|
size = "$PARTITION_SIZE";
|
|
content = {
|
|
type = "luks";
|
|
name = "crypted-parity-1";
|
|
settings.keyFile = "/etc/secrets/disks/parity-1";
|
|
content = {
|
|
type = "mdraid";
|
|
name = "data-storage";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
# RAID 1 Configuration
|
|
mdadm = {
|
|
"data-storage" = {
|
|
type = "mdadm";
|
|
level = 1;
|
|
content = {
|
|
type = "filesystem";
|
|
format = "xfs";
|
|
mountpoint = "/mnt/data-storage";
|
|
};
|
|
};
|