15 lines
189 B
Nix
15 lines
189 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
services.uptime-kuma = {
|
|
enable = true;
|
|
settings = {
|
|
PORT = "4621";
|
|
HOST = "127.0.0.1";
|
|
};
|
|
appriseSupport = true;
|
|
};
|
|
}
|