Added uptime kuma and signal

This commit is contained in:
fwastring 2025-09-11 17:06:25 +02:00
parent 0ce313cd1f
commit 2f067334ab
6 changed files with 80 additions and 45 deletions

21
moduler/uptime-kuma.nix Normal file
View file

@ -0,0 +1,21 @@
{
lib,
config,
pkgs,
...
}:
let
in
{
networking.firewall.allowedTCPPorts = [ 4000 ];
services = {
uptime-kuma = {
enable = true;
settings = {
PORT = "4000";
HOST = "192.168.1.227";
};
};
};
}