Add host "cirrus"

This commit is contained in:
SebastianStork 2025-05-03 20:43:03 +02:00
parent ce8d4e4208
commit 01428a1383
7 changed files with 131 additions and 0 deletions

36
hosts/cirrus/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" ];
};
};
};
};
}