feat(service): add ntfy

This commit is contained in:
2026-03-14 08:35:29 +01:00
parent a96c1e8d92
commit fdb347c0e6
5 changed files with 47 additions and 6 deletions
+16
View File
@@ -0,0 +1,16 @@
{ config, ... }:
{
services.ntfy-sh = {
enable = true;
environmentFile = config.sops.templates."ntfy.env".path;
settings = {
listen-http = ":8005";
base-url = "https://ntfy.patrickcanal.it";
smtp-server-listen = ":25";
smtp-server-domain = "patrickcanal.it";
behind-proxy = true;
enable-login = true;
require-login = true;
};
};
}