Skip to content

Commit d88f56f

Browse files
committed
Fix CI?
1 parent 2cbff3c commit d88f56f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

nixos/exporters.nix

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@
3030
boot.loader.efi.canTouchEfiVariables = lib.mkForce false;
3131
};
3232

33+
# VirtualBox needs more disk space
34+
virtualboxModule = {
35+
virtualbox.params.diskSize = 16384; # 16GB instead of default 8GB
36+
virtualbox.params.memorySize = 2048;
37+
};
38+
3339
# LXC containers need special network configuration
3440
lxcModule = {lib, ...}: {
3541
networking.useHostResolvConf = lib.mkForce false;
@@ -77,6 +83,7 @@ in {
7783
vmware = mkImage "vmware" [];
7884
virtualbox = mkImage "virtualbox" [
7985
noBootloaderModule
86+
virtualboxModule
8087
];
8188
proxmox = mkImage "proxmox" [
8289
noBootloaderModule

0 commit comments

Comments
 (0)