nixos-config/systems/disko/vm.nix
Sridhar Ratnakumar fac4275980 Add 'here' VM
And justfile as well
2024-02-20 16:24:40 -05:00

34 lines
692 B
Nix

{
disk = {
main = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02"; # for grub MBR
};
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
}