From 4a0a7ccb2a7e6125995c41b2abcf354ad693552f Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Sun, 31 Jan 2021 12:43:37 -0800 Subject: [PATCH] nixosTests.installer: Increase memory allocated to the VM Fixes #111223. Signed-off-by: Anders Kaseorg --- nixos/tests/installer.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index 5fa4704d02b..789add331b7 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -76,8 +76,8 @@ let def assemble_qemu_flags(): flags = "-cpu max" ${if system == "x86_64-linux" - then ''flags += " -m 768"'' - else ''flags += " -m 512 -enable-kvm -machine virt,gic-version=host"'' + then ''flags += " -m 1024"'' + else ''flags += " -m 768 -enable-kvm -machine virt,gic-version=host"'' } return flags