outage-detector/nix/module.nix

68 lines
1.6 KiB
Nix
Raw Normal View History

2023-08-19 15:44:50 +00:00
inputs: {
config,
lib,
pkgs,
system,
...
}: let
cfg = config.outage-detector;
package = inputs.self.packages.${pkgs.stdenv.hostPlatform.system}.default;
inherit (lib) mkIf mkEnableOption mkOption types;
in {
options.outage-detector = {
enable = mkEnableOption "outage-detector";
timer = lib.mkOption {
type = types.nullOr types.int;
default = null;
description = lib.mdDoc ''
The time intervall in seconds the script should be repeated.
'';
};
settings = mkOption {
type = with types; let
valueType = nullOr (oneOf [
# TODO: restrict type to actual config file structure
bool
int
float
str
path
(attrsOf valueType)
(listOf valueType)
]);
in
valueType;
2023-10-04 15:39:03 +00:00
default = {
2023-10-04 16:43:34 +00:00
logFile = throw "Please specify outage-detector.settings.";
2023-10-04 15:39:03 +00:00
host = "1.1.1.1";
timeout = 2;
};
2023-08-19 15:44:50 +00:00
};
};
config = mkIf cfg.enable {
environment.systemPackages = [package];
systemd.services.outage-detector = mkIf (cfg.timer
!= null) {
2023-10-04 16:43:34 +00:00
script = "${package}/bin/outage_detector log ${cfg.settings.logFile} --host ${cfg.settings.host} --timeout ${cfg.settings.timeout}";
2023-08-19 15:44:50 +00:00
serviceConfig = {
Type = "oneshot";
};
};
systemd.timers.outage-detector = mkIf (cfg.timer
!= null) {
wantedBy = ["timers.target"];
timerConfig = {
OnBootSec = "0s";
OnUnitActiveSec = "${toString cfg.timer}s";
Unit = "outage-detector.service";
};
};
};
}