nix/moduler/uptime-kuma.nix
2025-09-11 17:06:25 +02:00

21 lines
249 B
Nix

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