Files
flocon/machines/crocus/disko.nix

34 lines
713 B
Nix

{
disko.devices.disk.main = {
name = "main-dbca87cd30a5498488026c65b37eba60";
type = "disk";
device = "/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_48353082";
content = {
type = "gpt";
partitions = {
boot = {
type = "EF02";
size = "1M";
};
ESP = {
type = "EF00";
size = "512M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
}