From 9bdc55cfb71dc8a74c57ec4bc97d024c6c799a84 Mon Sep 17 00:00:00 2001 From: Minijackson Date: Tue, 28 Apr 2026 20:58:02 +0200 Subject: [PATCH] nixos/netbox: increase start timeout The service kept failing on my machine when running the test, which means it would propaply fail on a potato machine, and we should be nice to potatoes! --- nixos/modules/services/web-apps/netbox.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/netbox.nix b/nixos/modules/services/web-apps/netbox.nix index d380ab60bc41..65f761373cda 100644 --- a/nixos/modules/services/web-apps/netbox.nix +++ b/nixos/modules/services/web-apps/netbox.nix @@ -393,7 +393,7 @@ in ${lib.concatStringsSep " " cfg.gunicornArgs} ''; PrivateTmp = true; - TimeoutStartSec = lib.mkDefault "5min"; + TimeoutStartSec = lib.mkDefault "10min"; }; };