infra-one/ntfy/ntfy.nix

13 lines
238 B
Nix

{ lib, pkgs, config, ...}:
{
services = {
ntfy-sh = {
enable = true;
settings.base-url = "https://ntfy.lo-probst.de";
settings = {
listen-http = ":8080";
behind-proxy = true;
};
};
};
}