updated disko to submodule

This commit is contained in:
Gerg-L 2023-08-21 21:16:47 -04:00
parent 0b0f47a859
commit 2e26046d07
3 changed files with 35 additions and 53 deletions

View file

@ -5,33 +5,29 @@
device = "/dev/disk/by-id/ata-WDC_WDS240G2G0A-00JH30_180936803144";
type = "disk";
content = {
type = "table";
format = "gpt";
partitions = [
{
name = "ESP";
type = "gpt";
partitions = {
ESP = {
start = "1MiB";
end = "1GiB";
bootable = true;
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
}
{
name = "root";
};
root = {
start = "1GiB";
end = "100%";
part-type = "primary";
bootable = true;
type = "EF00";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
}
];
};
};
};
};
};