From 309ed272be60962e4465ae7b8cd2bb5cb1bc4bee Mon Sep 17 00:00:00 2001 From: Artturin Date: Tue, 10 Jan 2023 18:45:34 +0200 Subject: [PATCH] nixosTests.installer: bump memorySize Without it the tests sometimes fail because the OOM killer is triggered. https://hydra.nixos.org/build/204713462 --- nixos/tests/installer.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index 398ad8de19cf..300f66027899 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -291,7 +291,7 @@ let # builds stuff in the VM, needs more juice virtualisation.diskSize = 8 * 1024; virtualisation.cores = 8; - virtualisation.memorySize = 1536; + virtualisation.memorySize = 2047; boot.initrd.systemd.enable = systemdStage1;