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

38 lines
725 B
Nix

{ lib, ... }:
{
disko.devices.disk = lib.genAttrs [ "a" "b" ] (name: {
type = "disk";
device = "/dev/sd${name}";
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 = "/";
};
};
};
};
}