11 lines
176 B
Nix
11 lines
176 B
Nix
{
|
|
services.uptime-kuma = {
|
|
enable = true;
|
|
settings = {
|
|
HOST = "127.0.0.1";
|
|
PORT = "3005";
|
|
};
|
|
};
|
|
networking.firewall.allowedTCPPorts = [ 3005 ];
|
|
}
|