diff options
Diffstat (limited to 'nix/modules/ntfy-sh.nix')
| -rw-r--r-- | nix/modules/ntfy-sh.nix | 12 |
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"; + }; + }; +} |
