nix/host/x86_64-linux/home/UptimeKuma.nix

18 lines
294 B
Nix
Raw Permalink Normal View History

{ lib, ... }:
2024-12-02 21:12:45 +03:00
{
services.uptime-kuma = {
enable = true;
settings = {
DATA_DIR = "/var/lib/uptime-kuma/";
PORT = "64901";
# HOST = cfg.address;
};
};
2024-12-02 21:12:45 +03:00
systemd.services.uptime-kuma = {
serviceConfig = {
DynamicUser = lib.mkForce false;
};
};
2024-12-02 21:12:45 +03:00
}