11 lines
265 B
Nix
11 lines
265 B
Nix
{ config, service_configs, ... }:
|
|
{
|
|
services.ntfyAlerts = {
|
|
enable = true;
|
|
serverUrl = "https://${service_configs.ntfy.domain}";
|
|
topicFile = config.age.secrets.ntfy-alerts-topic.path;
|
|
|
|
tokenFile = config.age.secrets.ntfy-alerts-token.path;
|
|
};
|
|
}
|