disko/example/simple-efi.nix

35 lines
745 B
Nix
Raw Normal View History

2022-10-23 10:29:13 +00:00
{ disks ? [ "/dev/vdb" ], ... }: {
disko.devices = {
disk = {
vdb = {
device = builtins.elemAt disks 0;
type = "disk";
content = {
2023-06-07 12:31:21 +00:00
type = "gpt";
2023-06-07 11:54:53 +00:00
partitions = {
ESP = {
type = "EF00";
start = "1M";
end = "+100M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
2023-06-07 11:54:53 +00:00
};
root = {
end = "-0";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
2023-06-07 11:54:53 +00:00
};
};
};
2022-10-23 10:29:13 +00:00
};
};
};
}