15 lines
264 B
Nix
15 lines
264 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.uptime-kuma = {
|
|
enable = true;
|
|
settings = {
|
|
# NODE_EXTRA_CA_CERTS = "/etc/env/ssl/${domain}.pem";
|
|
PORT = "4000";
|
|
HOST = "127.0.0.1";
|
|
};
|
|
};
|
|
|
|
# networking.firewall.allowedTCPPorts = [ 4000 ];
|
|
}
|
|
|