infrastructure/nixos/hosts/olympus/ntfy/configuration.nix

38 lines
1.3 KiB
Nix
Raw Normal View History

2022-11-05 15:55:18 +01:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
2023-05-04 13:06:08 +02:00
{ pkgs, ... }:
2022-11-05 15:55:18 +01:00
{
imports = [ ];
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "22.11"; # Did you read the comment?
# Additional packages
environment.systemPackages = with pkgs; [ ntfy-sh ];
2023-05-07 18:42:36 +02:00
networking.firewall.allowedTCPPorts = [ 80 9090 ];
2022-11-05 15:55:18 +01:00
2023-05-04 13:08:10 +02:00
services.ntfy-sh = let datadir = "/var/lib/ntfy";
in {
2022-11-05 15:55:18 +01:00
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";
2023-05-07 18:42:36 +02:00
metrics-listen-http = ":9090";
2022-11-05 15:55:18 +01:00
};
};
}