hetzner_benchmark: init

This commit is contained in:
Primrose 2025-11-08 12:05:50 +08:00
parent a9701f83b3
commit b1395b27ce
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
5 changed files with 210 additions and 0 deletions

View file

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