das_watchdog: fix service type

Changed files
+1 -1
nixos
modules
services
monitoring
+1 -1
nixos/modules/services/monitoring/das_watchdog.nix
···
wantedBy = [ "multi-user.target" ];
serviceConfig = {
User = "root";
-
Type = "oneshot";
ExecStart = "${das_watchdog}/bin/das_watchdog";
RemainAfterExit = true;
};
···
wantedBy = [ "multi-user.target" ];
serviceConfig = {
User = "root";
+
Type = "simple";
ExecStart = "${das_watchdog}/bin/das_watchdog";
RemainAfterExit = true;
};