mirror of
https://git.kb-one.de/kb01/aux-config.git
synced 2025-12-05 18:28:53 +00:00
11 lines
239 B
Nix
11 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;
|
|
};
|
|
};
|
|
}
|