33 lines
637 B
Nix
33 lines
637 B
Nix
# Example to create a bios compatible gpt partition
|
|
{
|
|
disks ? [ "/dev/vdb" ],
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
disko.devices = {
|
|
disk = lib.genAttrs disks (device: {
|
|
name = lib.replaceStrings [ "/" ] [ "_" ] device;
|
|
device = device;
|
|
type = "disk";
|
|
content = {
|
|
type = "gpt";
|
|
partitions = {
|
|
boot = {
|
|
size = "1M";
|
|
type = "EF02";
|
|
};
|
|
root = {
|
|
size = "100%";
|
|
content = {
|
|
type = "filesystem";
|
|
format = "ext4";
|
|
mountpoint = "/";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
});
|
|
};
|
|
}
|