nixos-config/hosts/titan/ntfy.nix
2024-12-30 17:50:29 -05:00

13 lines
278 B
Nix

{ ... }:
{
services.ntfy-sh = {
enable = true;
settings = {
listen-http = "127.0.0.1:8083";
base-url = "https://ntfy.cything.io";
upstream-base-url = "https://ntfy.sh";
auth-default-access = "deny-all";
behind-proxy = true;
};
};
}