From 254426ec4bce7d289c80d7e84feb616d756efdd7 Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 16 Feb 2023 19:17:53 +0300 Subject: [PATCH] nixos/lib/testing: set default timeout for VM tests --- nixos/lib/testing/meta.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/lib/testing/meta.nix b/nixos/lib/testing/meta.nix index 65754fe3c5419..805b7520edff3 100644 --- a/nixos/lib/testing/meta.nix +++ b/nixos/lib/testing/meta.nix @@ -22,7 +22,7 @@ in }; timeout = lib.mkOption { type = types.nullOr types.int; - default = null; # NOTE: null values are filtered out by `meta`. + default = 3600; # 1 hour description = mdDoc '' The [{option}`test`](#test-opt-test)'s [`meta.timeout`](https://nixos.org/manual/nixpkgs/stable/#var-meta-timeout) in seconds. '';