mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
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:
parent
b7709b9951
commit
a0feedca8f
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue