summaryrefslogtreecommitdiff
path: root/nix/modules/ntfy-sh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/modules/ntfy-sh.nix')
-rw-r--r--nix/modules/ntfy-sh.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/nix/modules/ntfy-sh.nix b/nix/modules/ntfy-sh.nix
new file mode 100644
index 0000000..9311af2
--- /dev/null
+++ b/nix/modules/ntfy-sh.nix
@@ -0,0 +1,12 @@
+{ lib, config, ... }:
+{
+ services.ntfy-sh = {
+# enable = lib.mkDefault config.monorepo.profiles.server.enable;
+ enable = false;
+ settings = {
+ base-url = "https://ntfy.${config.monorepo.vars.remoteHost}";
+ listen-http = "127.0.0.1:2586";
+ envrionmentFile = "/run/secrets/ntfy";
+ };
+ };
+}