blob: a8b80b8849fff7aa789e2e9f11c1da3d9b5204fa (
plain) (
tree)
|
|
{ self, config, ... }:
let secrets = config.age.secrets;
in
{
# this unit is broken and useless. I don't know how to not install
# it, so let's mask it.
systemd.services.mdmonitor.enable = false;
my.services = {
monitoring = {
prometheus = {
enable = true;
listenAddress = "192.168.6.40";
};
loki = {
enable = true;
listenAddress = "192.168.6.40";
};
grafana = {
enable = true;
vhostName = "dash.${config.homelab.domain}";
};
};
sendsms.enable = true;
};
}
|