services/searxng: remove 2 levels of nesting for servers.url

This commit is contained in:
2025-08-31 22:23:21 -07:00
parent 95c0225f70
commit 54f0ce15dc

View File

@@ -64,13 +64,11 @@ in
tls = true;
service = "searxng";
};
http.services.searxng = {
loadbalancer.servers = [
{
url = "http://127.0.0.1:${toString searxngPort}";
}
];
};
http.services.searxng.loadbalancer.servers = [
{
url = "http://127.0.0.1:${toString searxngPort}";
}
];
};
};
}