mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
16 lines
374 B
Nix
16 lines
374 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}"
|
|
];
|
|
};
|
|
|
|
# services.nginx.virtualHosts."" = {
|
|
# locations."/" = {
|
|
# proxyPass = "http://localhost:8181/";
|
|
# };
|
|
# };
|
|
}
|