nixos-config/systems/x86_64-linux/stargate/services/ntfy-sh.nix
2025-09-19 16:28:03 +02:00

26 lines
384 B
Nix

{
lib,
pkgs,
inputs,
namespace,
system,
target,
format,
virtual,
systems,
config,
...
}:
with lib;
with lib.custom; {
services.ntfy-sh = {
enable = true;
settings = {
base-url = "https://ntfy.kylekrein.com";
listen-http = ":9000";
auth-default-access = "deny-all";
behind-proxy = true;
enable-login = false;
};
};
}