summaryrefslogtreecommitdiff
path: root/nix/modules/ntfy-sh.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2026-02-11 14:43:01 -0800
committerPreston Pan <ret2pop@gmail.com>2026-02-11 14:43:01 -0800
commit6a4f95482fa2c0faeafa028eae164d00c6418ac3 (patch)
tree8f87a90ae697b1a1ea6c3ed63c59d5e22de55425 /nix/modules/ntfy-sh.nix
parenta3106cdc192a64daa6421dc63ab3dd6000bdc112 (diff)
add vps stuff; fix internet issues plauging my devices
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";
+ };
+ };
+}