From a0feedca8f042a7886a706cd9b58df06fa7272d8 Mon Sep 17 00:00:00 2001 From: xeji <36407913+xeji@users.noreply.github.com> Date: Sat, 19 May 2018 11:09:07 +0200 Subject: [PATCH] nixos/tests/nexus: fix for i686 (#40743) test failed because qemu-system-i386 can only simulate 2047M RAM (not 2048) --- nixos/tests/nexus.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/nexus.nix b/nixos/tests/nexus.nix index d12d06c2c00f..be8862018777 100644 --- a/nixos/tests/nexus.nix +++ b/nixos/tests/nexus.nix @@ -13,7 +13,7 @@ import ./make-test.nix ({ pkgs, ...} : { server = { config, pkgs, ... }: - { virtualisation.memorySize = 2048; + { virtualisation.memorySize = 2047; # qemu-system-i386 has a 2047M limit virtualisation.diskSize = 2048; services.nexus.enable = true;