nix/nixos/hosts/warsaw-ovh-01/disks.nix

39 lines
727 B
Nix
Raw Normal View History

2024-07-14 13:45:29 +02:00
{ lib, ... }:
2024-07-12 07:40:25 +02:00
{
2024-07-14 13:50:10 +02:00
disko.devices.disk = lib.genAttrs [ "sda" "sdb" ] (disk: {
2024-07-14 13:45:29 +02:00
type = "disk";
2024-07-14 13:50:10 +02:00
device = "/dev/${disk}";
2024-07-14 13:45:29 +02:00
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02"; # for grub MBR
};
mdadm = {
size = "100%";
content = {
type = "mdraid";
name = "raid1";
2024-07-12 07:40:25 +02:00
};
2024-07-14 13:25:12 +02:00
};
};
};
2024-07-14 13:45:29 +02:00
});
disko.devices.mdadm = {
raid1 = {
type = "mdadm";
level = 1;
content = {
type = "luks";
name = "crypted";
2024-07-14 13:25:12 +02:00
content = {
2024-07-14 13:45:29 +02:00
type = "filesystem";
format = "ext4";
mountpoint = "/";
2024-07-14 13:25:12 +02:00
};
};
};
2024-07-14 13:45:29 +02:00
};
2024-07-14 13:25:12 +02:00
}