This commit is contained in:
albert 2024-07-14 20:45:29 +09:00
parent 17a3d8dfec
commit e1b6c937b3
Signed by: albert
GPG key ID: 3895DD267CA11BA9

View file

@ -1,89 +1,54 @@
{ lib, ... }:
{ {
# https://github.com/nix-community/disko/blob/master/example/boot-raid1.nix disko.devices.disk = lib.genAttrs [ "a" "b" ] (name: {
disko.devices = { type = "disk";
disk = { device = "/dev/sd${name}";
sda = { content = {
type = "disk"; type = "gpt";
device = "/dev/sda"; partitions = {
content = { boot = {
type = "gpt"; size = "1M";
partitions = { type = "EF02"; # for grub MBR
boot = { };
size = "1M"; ESP = {
type = "EF02"; # GRUB MBR size = "500M";
}; type = "EF00";
ESP = { content = {
size = "500M"; type = "mdraid";
type = "EF00"; name = "boot";
content = {
type = "mdraid";
name = "boot";
};
};
mdadm = {
size = "100%";
content = {
type = "mdraid";
name = "raid1";
};
};
}; };
}; };
}; mdadm = {
size = "100%";
sdb = { content = {
type = "disk"; type = "mdraid";
device = "/dev/sdb"; name = "raid1";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02"; # GRUB MBR
};
ESP = {
size = "500M";
type = "EF00";
content = {
type = "mdraid";
name = "boot";
};
};
mdadm = {
size = "100%";
content = {
type = "mdraid";
name = "raid1";
};
};
}; };
}; };
}; };
}; };
});
mdadm = { disko.devices.mdadm = {
boot = { boot = {
type = "mdadm"; type = "mdadm";
level = 1; level = 1;
metadata = "1.0"; metadata = "1.0";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
raid1 = {
type = "mdadm";
level = 1;
content = {
type = "luks";
name = "crypted";
content = { content = {
type = "filesystem"; type = "filesystem";
format = "vfat"; format = "ext4";
mountpoint = "/boot"; mountpoint = "/";
};
};
raid1 = {
type = "mdadm";
level = 1;
content = {
type = "luks";
name = "ROOT";
extraOpenArgs = [ "--allow-discards" ];
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
}; };
}; };
}; };