services/searxng: set servers as list of attr sets

This commit is contained in:
2025-08-31 22:21:07 -07:00
parent 8fa4c8cf86
commit 95c0225f70

View File

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