NixOS/system/services/telemetry/default.nix

17 lines
254 B
Nix
Raw Permalink Normal View History

2024-08-29 11:51:08 +07:00
{ ... }:
{
imports = [
./grafana.nix
./loki.nix
2024-09-02 18:17:03 +07:00
./tempo.nix
2024-09-06 21:13:31 +07:00
./alloy.nix
2024-09-07 10:27:25 +07:00
./mimir.nix
2024-09-10 16:34:58 +07:00
./prometheus.nix
2024-08-29 11:51:08 +07:00
];
profile.services.ntfy-sh.client.settings.subscribe = [
{ topic = "homeserver"; }
{ topic = "grafana"; }
];
2024-08-29 11:51:08 +07:00
}