We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d88f56f commit 44d185eCopy full SHA for 44d185e
nixos/exporters.nix
@@ -30,10 +30,11 @@
30
boot.loader.efi.canTouchEfiVariables = lib.mkForce false;
31
};
32
33
- # VirtualBox needs more disk space
+ # VirtualBox needs more resources for building
34
virtualboxModule = {
35
virtualbox.params.diskSize = 16384; # 16GB instead of default 8GB
36
- virtualbox.params.memorySize = 2048;
+ virtualbox.params.memorySize = 2048; # 2GB RAM for the final VM
37
+ virtualbox.vmBootMemorySize = 4096; # 4GB RAM for the build process
38
39
40
# LXC containers need special network configuration
0 commit comments