nix-configs/hosts/picard/ntfy.nix
2025-07-07 12:04:38 +02:00

11 lines
261 B
Nix

{pkgs,config,lib,...}:{
services.ntfy-sh = {
enable = true;
settings.base-url = "https://nfty.xyno.systems";
settings.behind-proxy = true;
settings.listen-http = ":15992";
};
ragon.persist.extraDirectories = [
"/var/cache/ntfy"
];
}