mirror of
https://github.com/0x1d/nix.git
synced 2025-12-14 14:01:29 +01:00
13 lines
251 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|