mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 05:44:29 +03:00
28 lines
631 B
Nix
28 lines
631 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 = "/";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
});
|
|
};
|
|
}
|