jungle/m/common/watchdog.nix

10 lines
200 B
Nix
Raw Normal View History

2023-08-29 22:26:12 +02:00
{ ... }:
{
# The boards have a BMC watchdog controlled by IPMI
boot.kernelModules = [ "ipmi_watchdog" ];
# Enable systemd watchdog with 30 s interval
systemd.watchdog.runtimeTime = "30s";
}