nixos/tests/nexus: fix for i686 (#40743)

test failed because qemu-system-i386 can only simulate 2047M RAM
(not 2048)
This commit is contained in:
xeji 2018-05-19 11:09:07 +02:00 committed by GitHub
parent b7709b9951
commit a0feedca8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;