nix-configs/partitions/simple-efi.nix
2023-12-29 16:51:00 +00:00

32 lines
671 B
Nix

{
disko.devices = {
disk = {
vda = {
device = "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = {
type = "EF00";
size = "1G";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}