Remove unused ntfy config

This commit is contained in:
Vili Sinervä 2024-12-21 14:31:13 +02:00
parent 701e522975
commit 90231bef9e
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996

View file

@ -1,18 +0,0 @@
{ config, pkgs, ... }:
{
networking.firewall.allowedTCPPorts = [
80
443
];
networking.firewall.allowedUDPPorts = [ 443 ];
services.ntfy-sh = {
enable = true;
settings = {
base-url = "https://ntfy.vsinerva.fi";
listen-https = ":443";
key-file = "/var/lib/ntfy/privkey.pem";
cert-file = "/var/lib/ntfy/fullchain.pem";
};
};
}