add cloud

This commit is contained in:
2025-09-01 20:09:23 -04:00
parent 93b7c6ee25
commit b970f6f550
3 changed files with 96 additions and 5 deletions

View File

@@ -21,21 +21,26 @@ in
type = "gpt";
partitions = {
boot = {
size = "512M";
name = "boot";
size = "1M";
type = "EF02";
};
esp = {
name = "ESP";
size = "500M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "umask=0077" ];
};
};
root = {
name = "root";
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
type = "lvm_pv";
vg = "pool";
};
};
swap = {
@@ -50,6 +55,25 @@ in
};
};
};
lvm_vg = {
pool = {
type = "lvm_vg";
lvs = {
root = {
size = "100%FREE";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
mountOptions = [
"defaults"
];
};
};
};
};
};
};
};
}