added for vps

This commit is contained in:
alsaiduq-lab 2025-10-28 05:47:59 -06:00
parent 15d0cb574b
commit ffbf9e08f2
9 changed files with 314 additions and 21 deletions

View file

@ -0,0 +1,28 @@
{lib, ...}: {
disko.devices = {
disk = {
main = {
type = "disk";
device = "/dev/xvda";
content = {
type = "gpt";
partitions = {
MBR = {
type = "EF02";
size = "1M";
priority = 1;
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}