feat: add premhome-gc1

This commit is contained in:
2024-10-15 16:17:07 -04:00
parent a426618383
commit a9b68668c4
8 changed files with 121 additions and 42 deletions

View File

@@ -0,0 +1,27 @@
{
disko.devices = {
disk = {
main = {
type = "disk";
device = "/dev/vda";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02";
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}