2024-08-11 10:13:36 +00:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
2024-08-25 15:02:35 +00:00
|
|
|
}:
|
|
|
|
{
|
2024-08-11 10:13:36 +00:00
|
|
|
services.searx = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.searxng;
|
|
|
|
environmentFile = config.sops.secrets."searx/environment".path;
|
|
|
|
settings = {
|
|
|
|
general.contact_url = "mailto:guanran928@outlook.com";
|
|
|
|
search.autocomplete = "google";
|
|
|
|
server = {
|
|
|
|
port = 8100;
|
|
|
|
secret_key = "@SEARX_SECRET@";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|