feat: vm setup

This commit is contained in:
2024-08-17 01:06:26 +08:00
parent f49c8a5a7a
commit c2d5ea6060
10 changed files with 249 additions and 0 deletions

View File

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