mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-21 16:11:22 +00:00
nixos/qemu-vm: fix 32-bits assert for memorySize
It should be an implication, rather than &&.
This commit is contained in:
@@ -894,7 +894,7 @@ in
|
||||
'';
|
||||
}
|
||||
])) ++ [
|
||||
{ assertion = pkgs.stdenv.hostPlatform.is32bit && cfg.memorySize < 2047;
|
||||
{ assertion = pkgs.stdenv.hostPlatform.is32bit -> cfg.memorySize < 2047;
|
||||
message = ''
|
||||
virtualisation.memorySize is above 2047, but qemu is only able to allocate 2047MB RAM on 32bit max.
|
||||
'';
|
||||
|
||||
Reference in New Issue
Block a user