From 3ccdf98fb07b0f16c18d31c6fe76cf8cc655f18a Mon Sep 17 00:00:00 2001 From: Bill Ewanick Date: Tue, 27 Jun 2023 11:15:06 -0400 Subject: [PATCH] Increase git timeouts for migration --- nixos-apps/git.ewanick.com.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/nixos-apps/git.ewanick.com.nix b/nixos-apps/git.ewanick.com.nix index 3c31616..676408e 100644 --- a/nixos-apps/git.ewanick.com.nix +++ b/nixos-apps/git.ewanick.com.nix @@ -9,6 +9,15 @@ service = { DISABLE_REGISTRATION = true; }; + + git = { + timeout = { + MIGRATE = 60 * 100; # seconds, 100 minutes + MIRROR = 60 * 100; + PULL = 60 * 100; + GC = 60 * 100; + }; + }; }; };