mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
18 lines
437 B
Nix
18 lines
437 B
Nix
{ config, ... }:
|
|
{
|
|
services.scrutiny = {
|
|
enable = true;
|
|
collector.enable = true;
|
|
settings.web.listen.port = 8181;
|
|
settings.notify.urls = [
|
|
# "ntfy://${config.liv.variables.ntfyURL}/${config.networking.hostName}"
|
|
"ntfy://notify.liv.town/${config.networking.hostName}"
|
|
];
|
|
};
|
|
|
|
# services.nginx.virtualHosts."" = {
|
|
# locations."/" = {
|
|
# proxyPass = "http://localhost:8181/";
|
|
# };
|
|
# };
|
|
}
|