nixos/services.das_watchdog: remove with lib;

This commit is contained in:
Felix Buehler 2024-08-30 00:46:56 +02:00
parent c39797b55e
commit 357422f21b

View File

@ -1,9 +1,6 @@
# 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;
@ -12,12 +9,12 @@ in {
###### interface
options = {
services.das_watchdog.enable = mkEnableOption "realtime watchdog";
services.das_watchdog.enable = lib.mkEnableOption "realtime watchdog";
};
###### implementation
config = mkIf config.services.das_watchdog.enable {
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";