15 lines
No EOL
264 B
Nix
15 lines
No EOL
264 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.ntfy =
|
|
{
|
|
services.ntfy-sh = {
|
|
enable = true;
|
|
settings = {
|
|
base-url = "http://192.168.0.80:4351";
|
|
listen-http = ":4351";
|
|
};
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [ 4351 ];
|
|
};
|
|
} |