From ef246753b871c39d0a35ad5308e0bc4b0ee74d77 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Mon, 10 Oct 2022 23:05:21 +0200 Subject: [PATCH] increase influxdb startup timeout --- systems/LoutreOS/monitoring.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/systems/LoutreOS/monitoring.nix b/systems/LoutreOS/monitoring.nix index a2120f0..9910068 100644 --- a/systems/LoutreOS/monitoring.nix +++ b/systems/LoutreOS/monitoring.nix @@ -108,6 +108,10 @@ in }; }; + systemd.services.influxdb.serviceConfig = { + TimeoutStartSec = "10min"; + }; + security.sudo.extraRules = [ { commands = [ { command = "${pkgs.smartmontools}/bin/smartctl"; options = [ "NOPASSWD" ]; } ]; users = [ "telegraf" ]; } ];