Add busch-main-docker server

This commit is contained in:
JuliusFreudenberger 2026-03-29 21:00:09 +02:00
parent ae00442324
commit 86bec559e6
4 changed files with 101 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{
disko.devices = {
disk = {
sda = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
MBR = {
type = "EF02"; # for grub MBR
size = "1M";
priority = 1; # Needs to be first partition
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}