15 lines
324 B
Nix
15 lines
324 B
Nix
|
{
|
||
|
services.ntfy-sh = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
base-url = "https://ntfy.ny4.dev";
|
||
|
listen-http = "";
|
||
|
listen-unix = "/run/ntfy-sh/ntfy.sock";
|
||
|
listen-unix-mode = 511; # 0777
|
||
|
behind-proxy = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
systemd.services.ntfy-sh.serviceConfig.RuntimeDirectory = ["ntfy-sh"];
|
||
|
}
|