Add new host "cumulus"

This commit is contained in:
SebastianStork 2025-06-08 00:55:40 +02:00
parent 4654dcc27c
commit ab97c76985
6 changed files with 132 additions and 0 deletions

36
hosts/cumulus/disko.nix Normal file
View file

@ -0,0 +1,36 @@
{
disko.devices = {
disk.main = {
device = "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02";
};
root = {
size = "100%";
content = {
type = "lvm_pv";
vg = "pool";
};
};
};
};
};
lvm_vg.pool = {
type = "lvm_vg";
lvs.root = {
size = "100%FREE";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
mountOptions = [ "defaults" ];
};
};
};
};
}