2023-09-04 21:19:22 +00:00
|
|
|
## Watchdog
|
|
|
|
##
|
|
|
|
## Enable hardware watchdog (for devices that support one) and
|
|
|
|
## feed it by checking the health of specified critical services.
|
|
|
|
## If the watchdog feeder stops, the device will reboot.
|
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
2023-09-02 16:28:40 +00:00
|
|
|
let
|
|
|
|
inherit (lib) mkOption types;
|
|
|
|
inherit (pkgs) liminix;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
2025-02-10 21:55:08 +00:00
|
|
|
system.service.watchdog = mkOption {
|
2023-09-02 16:28:40 +00:00
|
|
|
type = liminix.lib.types.serviceDefn;
|
|
|
|
};
|
|
|
|
};
|
2024-07-15 18:00:08 +00:00
|
|
|
config.system.service.watchdog = config.system.callService ./watchdog.nix {
|
2023-09-02 16:28:40 +00:00
|
|
|
watched = mkOption {
|
|
|
|
description = "services to watch";
|
|
|
|
type = types.listOf liminix.lib.types.service;
|
|
|
|
};
|
|
|
|
headStart = mkOption {
|
|
|
|
description = "delay in seconds before watchdog starts checking service health";
|
|
|
|
default = 60;
|
|
|
|
type = types.int;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config.kernel.config.WATCHDOG = "y";
|
|
|
|
}
|