nix/moduler/uptime-kuma.nix
2025-09-17 10:03:31 +02:00

21 lines
246 B
Nix

{
lib,
config,
pkgs,
...
}:
let
in
{
networking.firewall.allowedTCPPorts = [ 4000 ];
services = {
uptime-kuma = {
enable = true;
settings = {
PORT = "4000";
HOST = "100.64.0.4";
};
};
};
}