8 lines
231 B
Nix
8 lines
231 B
Nix
{ config, lib, ... }:
|
|
{
|
|
imports = [ ./nginx ];
|
|
|
|
services.uptime-kuma.settings.PORT = "4005";
|
|
|
|
environment.persistence."/persist".directories = lib.mkIf config.services.uptime-kuma.enable [ "/var/lib/private/uptime-kuma" ];
|
|
}
|