11 lines
150 B
Nix
11 lines
150 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.uptime-kuma = {
|
|
enable = true;
|
|
settings = {
|
|
PORT = "4001";
|
|
HOST = "127.0.0.1";
|
|
};
|
|
};
|
|
}
|