summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/monitoring/das_watchdog.nix
blob: 82c9fea168d12697824b510c8233fc3a70363a07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# 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";
  };

  ###### implementation

  config = lib.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";
        Type = "simple";
        ExecStart = "${das_watchdog}/bin/das_watchdog";
        RemainAfterExit = true;
      };
    };
  };
}