Files
disko/example/with-lib.nix
2025-02-15 10:08:56 +00:00

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 = "/";
};
};
};
};
});
};
}