homelab/hosts/midgard/disko.nix
2026-05-19 14:41:25 +09:00

37 lines
658 B
Nix

{ ... }:
{
disko.devices = {
disk.main = {
type = "disk";
device = "/dev/disk/by-id/REPLACE_WITH_MIDGARD_DISK_ID";
content = {
type = "gpt";
partitions = {
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
}