nixpkgs/nixos/modules/services/monitoring/das_watchdog.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
903 B
Nix
Raw Permalink Normal View History

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 = {
services.das_watchdog.enable = lib.mkEnableOption "realtime watchdog";
2015-05-25 17:40:16 +02:00
};
###### implementation
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;
};
};
};
}