summaryrefslogtreecommitdiff
path: root/nix/modules/ntfy-sh.nix
blob: 9311af2b678e072e2400597db838785a55ab92d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
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";
    };
  };
}