From ceb0a28e8c2d3f3bd0f57dda74f185a570522ecf Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 27 Feb 2018 20:30:06 +0100 Subject: [PATCH] Don't try hashed mirrors in the installer test --- nixos/tests/installer.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index 3e49c5b96682..c12919540a30 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -243,6 +243,11 @@ let ++ optionals (bootLoader == "grub" && grubVersion == 2) [ pkgs.grub2 pkgs.grub2_efi ]; nix.binaryCaches = mkForce [ ]; + nix.extraOptions = + '' + hashed-mirrors = + connect-timeout = 1 + ''; }; };