2015-05-25 17:40:16 +02:00
|
|
|
# A general watchdog for the linux operating system that should run in the
|
|
|
|
# background at all times to ensure a realtime process won't hang the machine
|
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
|
|
|
|
inherit (pkgs) das_watchdog;
|
|
|
|
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
2024-08-30 00:46:56 +02:00
|
|
|
services.das_watchdog.enable = lib.mkEnableOption "realtime watchdog";
|
2015-05-25 17:40:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
2024-08-30 00:46:56 +02:00
|
|
|
config = lib.mkIf config.services.das_watchdog.enable {
|
2015-05-25 17:40:16 +02:00
|
|
|
environment.systemPackages = [ das_watchdog ];
|
|
|
|
systemd.services.das_watchdog = {
|
|
|
|
description = "Watchdog to ensure a realtime process won't hang the machine";
|
|
|
|
after = [
|
|
|
|
"multi-user.target"
|
|
|
|
"sound.target"
|
|
|
|
];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
|
|
User = "root";
|
2017-03-09 16:14:17 +01:00
|
|
|
Type = "simple";
|
2015-05-25 17:40:16 +02:00
|
|
|
ExecStart = "${das_watchdog}/bin/das_watchdog";
|
|
|
|
RemainAfterExit = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|