improve starter template

This commit is contained in:
Jörg Thalheim
2024-04-05 13:08:32 +02:00
parent cb103c7772
commit 1fc4739ee3
2 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
{
config.disko.devices = {
disk = {
main = {
type = "disk";
device = throw "Change this to your disk device";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02"; # for grub MBR
};
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}