diff --git a/services/ntfy.nix b/services/ntfy.nix deleted file mode 100644 index 12f6cc0..0000000 --- a/services/ntfy.nix +++ /dev/null @@ -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"; - }; - }; -}