disko/example/simple-efi.nix

34 lines
695 B
Nix
Raw Permalink Normal View History

2023-08-11 06:11:01 +00:00
{
disko.devices = {
disk = {
2024-07-19 19:17:48 +00:00
main = {
device = "/dev/disk/by-id/some-disk-id";
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";
size = "500M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
2023-06-07 11:54:53 +00:00
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
2023-06-07 11:54:53 +00:00
};
};
};
2022-10-23 10:29:13 +00:00
};
};
};
}