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

16 lines
325 B
Nix

_: {
microvm.autostart = [ "router01" ];
microvm.vms.router01 = {
config = {
networking.hostName = "router01";
microvm.shares = [
{
source = "/nix/store";
mountPoint = "/nix/.ro-store";
tag = "ro-store";
proto = "virtiofs";
}
];
};
};
}