nixos-config/hosts/chunk/ntfy.nix

13 lines
276 B
Nix
Raw Normal View History

2024-12-15 02:44:50 -05:00
{...}: {
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;
};
};
}