Files
nix/os/system/virtualisation.nix
2023-11-27 09:25:12 +01:00

13 lines
251 B
Nix

{ pkgs, ... }: {
virtualisation = {
docker.enable = true;
# following configuration is added only when building VM with build-vm
vmVariant = {
virtualisation = {
memorySize = 2048;
cores = 2;
};
};
};
}