mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
59 lines
1.2 KiB
Nix
59 lines
1.2 KiB
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
|
|
priority = 1; # Needs to be first partition
|
|
};
|
|
ESP = {
|
|
size = "500M";
|
|
type = "EF00";
|
|
content = {
|
|
type = "mdraid";
|
|
name = "boot";
|
|
};
|
|
};
|
|
mdadm = {
|
|
size = "100%";
|
|
content = {
|
|
type = "mdraid";
|
|
name = "raid1";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
});
|
|
disko.devices.mdadm = {
|
|
boot = {
|
|
type = "mdadm";
|
|
level = 1;
|
|
metadata = "1.0";
|
|
content = {
|
|
type = "filesystem";
|
|
format = "vfat";
|
|
mountpoint = "/boot";
|
|
};
|
|
};
|
|
raid1 = {
|
|
type = "mdadm";
|
|
level = 1;
|
|
content = {
|
|
type = "luks";
|
|
name = "crypted";
|
|
settings.keyFile = "/tmp/secret.key";
|
|
content = {
|
|
type = "filesystem";
|
|
format = "ext4";
|
|
mountpoint = "/";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|