From 0bd4c83330df5e163297d13b0da80a5ec8b16d48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Bon=C3=A9?= Date: Thu, 27 Nov 2025 13:23:19 +0100 Subject: [PATCH] Fix renamed option for watchdog time The option `systemd.watchdog.runtimeTime' defined in `/nix/store/m7h6slsq394m872xnhxsxqrkhndz1lqs-source/m/common/base/watchdog.nix' has been renamed to `systemd.settings.Manager.RuntimeWatchdogSec'. --- m/common/base/watchdog.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m/common/base/watchdog.nix b/m/common/base/watchdog.nix index d4d297d..563c019 100644 --- a/m/common/base/watchdog.nix +++ b/m/common/base/watchdog.nix @@ -5,5 +5,5 @@ boot.kernelModules = [ "ipmi_watchdog" ]; # Enable systemd watchdog with 30 s interval - systemd.watchdog.runtimeTime = "30s"; + systemd.settings.Manager.RuntimeWatchdogSec = 30; }