From 2b988c76fd3b6f1f1117b419a83589fb7cea14bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 18 Jan 2023 11:45:48 +0100 Subject: [PATCH] Revert "nixosTests.installer: bump memorySize" This reverts commit 309ed272be60962e4465ae7b8cd2bb5cb1bc4bee. The bump caused nixosTests.installer.luksroot hang, e.g. see https://hydra.nixos.org/build/205951019 (I don't know why.) The OOM issues were avoided by 6dccdc45851 (newer but merged earlier) --- 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 f5455267b286..3adfa979edcc 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -308,7 +308,7 @@ let # builds stuff in the VM, needs more juice virtualisation.diskSize = 8 * 1024; virtualisation.cores = 8; - virtualisation.memorySize = 2047; + virtualisation.memorySize = 1536; boot.initrd.systemd.enable = systemdStage1;