From 0f1a8fb5461d1f8e7cd08e8d0cf53125239d3739 Mon Sep 17 00:00:00 2001 From: Astro Date: Tue, 20 Dec 2022 04:00:28 +0100 Subject: [PATCH] nixos-module: lower RestartSec, increase WatchdogSec --- nixos-module.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos-module.nix b/nixos-module.nix index 1e36b5f..60f9d9a 100644 --- a/nixos-module.nix +++ b/nixos-module.nix @@ -69,8 +69,8 @@ Group = cfg.group; ProtectSystem = "full"; Restart = "always"; - RestartSec = "10s"; - WatchdogSec = "600s"; + RestartSec = "1s"; + WatchdogSec = "1800s"; }; }; };