snowflake/hosts/sora/services/ntfy-sh.nix

14 lines
319 B
Nix
Raw Normal View History

2023-12-30 18:02:40 -05:00
{pkgs, ...}: {
environment.systemPackages = [pkgs.ntfy-sh];
services.ntfy-sh = {
enable = true;
settings = {
listen-http = ":8090";
base-url = "https://ntfy.flake.sh";
upstream-base-url = "https://ntfy.sh";
behind-proxy = true;
auth-default-access = "read-only";
};
};
}