mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
nixos/tests: fix for memorySize being an integer
This commit is contained in:
parent
895f3956d2
commit
7960244eb1
|
@ -82,7 +82,7 @@ in
|
||||||
# chromium-based browsers refuse to run as root
|
# chromium-based browsers refuse to run as root
|
||||||
test-support.displayManager.auto.user = "alice";
|
test-support.displayManager.auto.user = "alice";
|
||||||
# browsers may hang with the default memory
|
# browsers may hang with the default memory
|
||||||
virtualisation.memorySize = "500";
|
virtualisation.memorySize = 500;
|
||||||
|
|
||||||
networking.hosts."127.0.0.1" = [ "good.example.com" "bad.example.com" ];
|
networking.hosts."127.0.0.1" = [ "good.example.com" "bad.example.com" ];
|
||||||
security.pki.certificateFiles = [ "${example-good-cert}/ca.crt" ];
|
security.pki.certificateFiles = [ "${example-good-cert}/ca.crt" ];
|
||||||
|
|
|
@ -14,7 +14,7 @@ import ./make-test-python.nix ({ pkgs, firefoxPackage, ... }: {
|
||||||
];
|
];
|
||||||
|
|
||||||
# Need some more memory to record audio.
|
# Need some more memory to record audio.
|
||||||
virtualisation.memorySize = "500";
|
virtualisation.memorySize = 500;
|
||||||
|
|
||||||
# Create a virtual sound device, with mixing
|
# Create a virtual sound device, with mixing
|
||||||
# and all, for recording audio.
|
# and all, for recording audio.
|
||||||
|
|
Loading…
Reference in a new issue