nix-config/features/services/uptime-kuma.nix

12 lines
164 B
Nix
Raw Normal View History

2024-07-15 16:50:14 +02:00
{ ... }:
2024-07-15 16:27:23 +02:00
{
#TODO: implement uptime-kama
2024-07-15 17:30:19 +02:00
services.uptime-kuma = {
2024-07-15 16:27:23 +02:00
enable = true;
settings = {
2024-08-09 19:36:17 +02:00
HOST = "0.0.0.0";
2024-07-15 16:27:23 +02:00
PORT = "4000";
};
};
}