single-disk: fix module

This commit is contained in:
Jörg Thalheim 2023-07-04 18:09:53 +02:00
parent 7dbc4c58bd
commit 1987362368

View File

@ -4,11 +4,12 @@ let
grub = { grub = {
name = "grub"; name = "grub";
size = "1M"; size = "1M";
flags = [ "bios_grub" ]; type = "ef02";
}; };
esp = { esp = {
name = "ESP"; name = "ESP";
size = "500MB"; type = "EF00";
size = "500M";
content = { content = {
type = "filesystem"; type = "filesystem";
format = "vfat"; format = "vfat";
@ -18,7 +19,6 @@ let
root = { root = {
name = "root"; name = "root";
size = "100%"; size = "100%";
bootable = true;
content = { content = {
type = "filesystem"; type = "filesystem";
# We use xfs because it has support for compression and has a quite good performance for databases # We use xfs because it has support for compression and has a quite good performance for databases