snowflake/hosts/sora/services/ntfy-sh.nix
notohh 9acd9716da
Some checks failed
fmt check / check (push) Waiting to run
flake check / check (push) Has been cancelled
sora: switch to ntfy from gotify
2023-12-30 18:02:40 -05:00

13 lines
319 B
Nix

{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";
};
};
}