10 lines
239 B
Nix
10 lines
239 B
Nix
{ config, lib, pkgs, modulesPath, ... }:
|
|
{
|
|
virtualisation.vmVariant = {
|
|
# following configuration is added only when building VM with build-vm
|
|
virtualisation = {
|
|
memorySize = 4*1024;
|
|
cores = 3;
|
|
};
|
|
};
|
|
}
|