Add new host

This commit is contained in:
SebastianStork 2024-03-22 22:28:42 +01:00
parent 57f4f7a7df
commit 943576db67
7 changed files with 155 additions and 1 deletions

View file

@ -0,0 +1,32 @@
{
disko.devices = {
disk = {
vdb = {
device = "/dev/sda";
type = "disk";
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 = "/";
};
};
};
};
};
};
};
}