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