nixos/hosts/modules/server/kuma.nix
2024-06-20 11:27:41 +02:00

11 lines
176 B
Nix

{
services.uptime-kuma = {
enable = true;
settings = {
HOST = "127.0.0.1";
PORT = "3005";
};
};
networking.firewall.allowedTCPPorts = [ 3005 ];
}