nixos/disko/minecraft.nix
2024-08-16 22:58:51 -04:00

34 lines
720 B
Nix

_: {
disk = {
main = {
device = "/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_51056934";
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02";
};
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "xfs";
mountpoint = "/";
};
};
};
};
};
};
}