fix: multiple node support

This commit is contained in:
2025-04-19 22:40:36 -07:00
parent 40d8f3e30a
commit a3a9c62191
5 changed files with 33 additions and 19 deletions

View File

@@ -0,0 +1,50 @@
{
disko.devices = {
disk = {
disk1 = {
device = "/dev/nvme0n1";
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02";
};
ESP = {
type = "EF00";
size = "512M";
content = {
type = "filesystem";
mountpoint = "/boot";
format = "vfat";
};
};
primary = {
size = "100%";
content = {
type = "lvm_pv";
vg = "pool";
};
};
};
};
};
};
lvm_vg = {
pool = {
type = "lvm_vg";
lvs = {
root = {
size = "100%FREE";
content = {
type = "filesystem";
format = "btrfs";
mountpoint = "/";
};
};
};
};
};
};
}