{ flake.modules.nixos.indra = { config, ... }: { infra.zfs.pool = "zroot"; disko.devices.disk.main = { type = "disk"; imageSize = "100G"; device = "/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_drive-scsi0"; content = { type = "gpt"; partitions = { bios = { size = "1M"; type = "EF02"; }; boot = { size = "512M"; content = { type = "filesystem"; format = "ext4"; mountpoint = "/boot"; mountOptions = [ "noatime" ]; }; }; zfs = { size = "100%"; content = { type = "zfs"; pool = config.infra.zfs.pool; }; }; }; }; }; }; }