From 6dab95309296b49ad776f9da55faa046089c1aeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 9 Jul 2024 12:01:06 +0200 Subject: [PATCH] change type of buildRetries to int that allows 0 values --- nix/master.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/master.nix b/nix/master.nix index 9b10d01..b7be812 100644 --- a/nix/master.nix +++ b/nix/master.nix @@ -76,7 +76,7 @@ in ''; }; buildRetries = lib.mkOption { - type = lib.types.ints.positive; + type = lib.types.int; default = 1; description = "Number of times a build is retried"; };