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.

35 lines
889 B
Nix
Raw Normal View History

2015-05-25 15:40:16 +00: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, ... }:
with lib;
let
inherit (pkgs) das_watchdog;
in {
###### interface
options = {
2015-06-21 15:19:46 +00:00
services.das_watchdog.enable = mkEnableOption (lib.mdDoc "realtime watchdog");
2015-05-25 15:40:16 +00:00
};
###### implementation
config = mkIf config.services.das_watchdog.enable {
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 15:14:17 +00:00
Type = "simple";
2015-05-25 15:40:16 +00:00
ExecStart = "${das_watchdog}/bin/das_watchdog";
RemainAfterExit = true;
};
};
};
}