nix/nixos/htz/vms.nix
2024-01-27 14:28:21 -06:00

15 lines
297 B
Nix

{ ... }: {
microvm.vms = {
vm-test = {
config = {
microvm.shares = [{
source = "/nix/store";
mountPoint = "/nix/.ro-store";
tag = "ro-store";
proto = "virtiofs";
}];
system.stateVersion = "23.11";
};
};
};
}