thesis/code/nix/vm.nix
2025-02-27 20:09:14 +01:00

18 lines
325 B
Nix

{ ... }: {
microvm = {
volumes = [ {
mountPoint = "/var";
image = "target.img";
size = 256;
} ];
shares = [ {
proto = "9p";
tag = "ro-store";
source = "/nix/store";
mountPoint = "/nix/.ro-store";
} ];
hypervisor = "qemu";
socket = "control.socket";
};
}