stateless-uptime-kuma/tests/testmodule.nix

15 lines
301 B
Nix
Raw Normal View History

2024-04-18 18:19:59 +02:00
let
module = {
statelessUptimeKuma.probesConfig = {
monitors = [
{
name = "Nix probe";
type = "ping";
hostname = "localhost";
}
];
};
};
in
2024-04-18 19:36:28 +02:00
((import ../. { }).evalModules { modules = [ module ]; }).config.statelessUptimeKuma.build