tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/lib/testing: set default timeout for VM tests
K900
3 years ago
254426ec
84434922
+1
-1
1 changed file
expand all
collapse all
unified
split
nixos
lib
testing
meta.nix
+1
-1
nixos/lib/testing/meta.nix
···
22
22
};
23
23
timeout = lib.mkOption {
24
24
type = types.nullOr types.int;
25
25
-
default = null; # NOTE: null values are filtered out by `meta`.
25
25
+
default = 3600; # 1 hour
26
26
description = mdDoc ''
27
27
The [{option}`test`](#test-opt-test)'s [`meta.timeout`](https://nixos.org/manual/nixpkgs/stable/#var-meta-timeout) in seconds.
28
28
'';