nix-files/hosts/by-name/servo/services/ntfy/default.nix

15 lines
379 B
Nix
Raw Normal View History

# ntfy: UnifiedPush notification delivery system
# - used to get push notifications out of Matrix and onto a Phone (iOS, Android, or a custom client)
2023-10-22 04:16:24 +00:00
{ config, ... }:
{
2023-10-22 04:16:24 +00:00
imports = [
./ntfy-waiter.nix
2023-10-22 04:16:24 +00:00
./ntfy-sh.nix
];
sops.secrets."ntfy-sh-topic" = {
mode = "0440";
owner = config.users.users.ntfy-sh.name;
group = config.users.users.ntfy-sh.name;
};
}