From 9ffe32bd86e5350d76aa893646515cb2fdac444c Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Sat, 15 Jun 2024 13:17:13 -0600 Subject: [PATCH] download increased timeout --- modules/scripts/download.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/scripts/download.nix b/modules/scripts/download.nix index 1eb1a20..a349ad3 100644 --- a/modules/scripts/download.nix +++ b/modules/scripts/download.nix @@ -43,6 +43,8 @@ wantedBy = [ "default.target" ]; path = [ pkgs.bash download ]; serviceConfig = { + TimeoutStartSec = 2000; + TimeoutStopSec = 2000; Restart = "on-failure"; RestartSec = 30; ExecStart = "${download}/bin/download ${execStartCmd}";