This commit is contained in:
4DBug
2026-02-08 19:06:33 -06:00
parent 975c4bb860
commit 782dfce269
3 changed files with 25 additions and 27 deletions

View File

@@ -3,14 +3,30 @@
{
services.searx = {
enable = true;
redisCreateLocally = true;
settings.server = {
bind_address = "127.0.0.1";
port = 1025;
};
environmentFile = "/home/bug/nix/modules/searxng_key";
redisCreateLocally = true;
settings = {
server = {
bind_address = "127.0.0.1";
port = 1025;
};
general = {
instance_name = "search.bug.tools";
};
engines = {
remove = [
"ahmia"
"torch"
"radio_browser"
"wikidata"
];
};
limiter.enable = false;
};
};
}