1
0
Fork 0
forked from DGNum/lab-infra
lab-infra/machines/krz01/microvm-ml01.nix
2024-10-12 00:20:58 +02:00

22 lines
454 B
Nix

_: {
microvm.autostart = [ "ml01" ];
microvm.vms.ml01 = {
config = {
networking.hostName = "ml01";
microvm = {
hypervisor = "cloud-hypervisor";
vcpu = 4;
mem = 4096;
balloonMem = 2048;
shares = [
{
source = "/nix/store";
mountPoint = "/nix/.ro-store";
tag = "ro-store";
proto = "virtiofs";
}
];
};
};
};
}