forked from DGNum/stateless-uptime-kuma
36 lines
720 B
Nix
36 lines
720 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
probesFormat = pkgs.formats.json { };
|
|
cfg = config.statelessUptimeKuma;
|
|
in
|
|
{
|
|
options.statelessUptimeKuma = {
|
|
build.json = lib.mkOption {
|
|
internal = true;
|
|
visible = false;
|
|
type = lib.types.package;
|
|
};
|
|
probesConfig = {
|
|
monitors = lib.mkOption {
|
|
inherit (probesFormat) type;
|
|
default = [ ];
|
|
};
|
|
tags = lib.mkOption {
|
|
inherit (probesFormat) type;
|
|
default = [ ];
|
|
};
|
|
notifications = lib.mkOption {
|
|
inherit (probesFormat) type;
|
|
default = [ ];
|
|
};
|
|
};
|
|
};
|
|
config.statelessUptimeKuma = {
|
|
build.json = probesFormat.generate "probes.json" cfg.probesConfig;
|
|
};
|
|
}
|