Initial commit from system

This commit is contained in:
LorenzProbst 2026-06-15 19:03:52 +02:00
parent 5754649a1b
commit 9cae73f501
5 changed files with 366 additions and 0 deletions

13
ntfy/ntfy.nix Normal file
View file

@ -0,0 +1,13 @@
{ lib, pkgs, config, ...}:
{
services = {
ntfy-sh = {
enable = true;
settings.base-url = "https://ntfy.lo-probst.de";
settings = {
listen-http = ":8080";
behind-proxy = true;
};
};
};
}