nixos-config/systems/x86_64-linux/stargate/services/uptime-kuma.nix
2025-10-14 13:36:31 +02:00

15 lines
189 B
Nix

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