snowflake/hosts/sora/services/uptimekuma.nix

11 lines
181 B
Nix
Raw Normal View History

2023-06-23 11:03:32 -04:00
_: {
2023-09-01 13:00:43 -04:00
networking.firewall.allowedTCPPorts = [4000];
2023-06-23 11:03:32 -04:00
services.uptime-kuma = {
enable = true;
settings = {
2023-11-30 14:55:40 -05:00
HOST = "100.104.42.96";
2023-06-23 11:03:32 -04:00
PORT = "4000";
};
};
}