fix duplicate port

This commit is contained in:
Joakim Repomaa
2025-02-13 01:28:40 +02:00
parent 93a518a6d5
commit 309f43a276

View File

@@ -65,12 +65,15 @@ in
grafana = {
enable = true;
subdomain = "graph";
settings.smtp = {
enabled = true;
host = smtp.host;
port = smtp.port;
user = smtp.username;
from_address = smtp.from;
settings = {
server.http_port = 3005;
smtp = {
enabled = true;
host = smtp.host;
port = smtp.port;
user = smtp.username;
from_address = smtp.from;
};
};
};