fixed linting

This commit is contained in:
Vivian 2023-09-25 11:56:02 +02:00
parent 290ce7f72d
commit ea83c79fb3
59 changed files with 2843 additions and 2638 deletions

View file

@ -20,18 +20,19 @@
networking.firewall.allowedTCPPorts = [ 80 9090 ];
services.ntfy-sh = let datadir = "/var/lib/ntfy-sh";
in {
enable = true;
settings = {
base-url = "https://ntfy.0x76.dev";
listen-http = ":80";
cache-file = "${datadir}/cache.db";
auth-file = "${datadir}/user.db";
auth-default-access = "deny-all";
behind-proxy = true;
attachment-cache-dir = "${datadir}/attachments";
metrics-listen-http = ":9090";
services.ntfy-sh =
let datadir = "/var/lib/ntfy-sh";
in {
enable = true;
settings = {
base-url = "https://ntfy.0x76.dev";
listen-http = ":80";
cache-file = "${datadir}/cache.db";
auth-file = "${datadir}/user.db";
auth-default-access = "deny-all";
behind-proxy = true;
attachment-cache-dir = "${datadir}/attachments";
metrics-listen-http = ":9090";
};
};
};
}