drop disko config

This commit is contained in:
Jörg Thalheim 2023-09-14 06:43:57 +02:00
parent 61151c0ad9
commit d1106b9a7d

View file

@ -1,35 +0,0 @@
{
disko.devices.disk.sda = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
boot = {
name = "grub";
size = "1M";
type = "EF02";
};
esp = {
name = "ESP";
type = "EF00";
size = "500M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
name = "root";
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
}