nixos/lib/testing: set default timeout for VM tests

K900 254426ec 84434922

Changed files
+1 -1
nixos
lib
testing
+1 -1
nixos/lib/testing/meta.nix
···
};
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.
'';