forked from rarias/jungle
The option `systemd.watchdog.runtimeTime' defined in `/nix/store/m7h6slsq394m872xnhxsxqrkhndz1lqs-source/m/common/base/watchdog.nix' has been renamed to `systemd.settings.Manager.RuntimeWatchdogSec'.
10 lines
212 B
Nix
10 lines
212 B
Nix
{ ... }:
|
|
|
|
{
|
|
# The boards have a BMC watchdog controlled by IPMI
|
|
boot.kernelModules = [ "ipmi_watchdog" ];
|
|
|
|
# Enable systemd watchdog with 30 s interval
|
|
systemd.settings.Manager.RuntimeWatchdogSec = 30;
|
|
}
|