notohh
9acd9716da
Some checks failed
fmt check / check (push) Waiting to run
flake check / check (push) Has been cancelled
13 lines
319 B
Nix
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";
|
|
};
|
|
};
|
|
}
|