nix/nixos/hosts/warsaw-ovh-01/disks.nix
2024-07-14 20:50:10 +09:00

38 lines
727 B
Nix

{ lib, ... }:
{
disko.devices.disk = lib.genAttrs [ "sda" "sdb" ] (disk: {
type = "disk";
device = "/dev/${disk}";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02"; # for grub MBR
};
mdadm = {
size = "100%";
content = {
type = "mdraid";
name = "raid1";
};
};
};
};
});
disko.devices.mdadm = {
raid1 = {
type = "mdadm";
level = 1;
content = {
type = "luks";
name = "crypted";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
}