extremist-software/modules/uptime-kuma.nix
2026-02-28 16:50:03 -08:00

11 lines
150 B
Nix

{ config, pkgs, ... }:
{
services.uptime-kuma = {
enable = true;
settings = {
PORT = "4001";
HOST = "127.0.0.1";
};
};
}