NixOS/system/services/ntfy-sh.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

2024-09-05 09:42:15 +07:00
{ config, pkgs, lib, ... }:
let
cfg = config.profile.services.ntfy-sh;
inherit (lib) mkIf;
domain = "ntfy.tigor.web.id";
in
{
config = mkIf cfg.enable {
services.caddy.virtualHosts.${domain}.extraConfig = ''
reverse_proxy ${config.services.ntfy-sh.settings.listen-http}
'';
environment.systemPackages = with pkgs; [
# Access to `ntfy` cli tool
ntfy-sh
];
services.ntfy-sh = {
enable = true;
settings =
let
base-dir = "/var/lib/ntfy-sh";
in
rec {
listen-http = "0.0.0.0:15150";
behind-proxy = true;
base-url = "https://${domain}";
# Performance. Cache and Batching.
cache-file = "${base-dir}/cache.db";
cache-duration = "24h";
cache-batch-size = 10;
cache-batch-timeout = "1s";
# Auth
auth-file = "${base-dir}/auth.db";
auth-default-access = "deny-all";
# Attachments
attachment-cache-dir = "${base-dir}/attachments";
attachment-expiry-duration = cache-duration;
};
};
};
}