knossos/services/searxng.nix

21 lines
406 B
Nix
Raw Normal View History

2026-03-30 16:02:55 +08:00
{ config, pkgs, ... }:
{
services.searx = {
enable = true;
redisCreateLocally = true;
2026-03-30 16:12:50 +08:00
settings = {
2026-03-30 16:10:51 +08:00
server = {
2026-03-31 08:58:34 +08:00
base_url = "https://searxng.knossos.arkadi.one";
2026-03-30 16:10:51 +08:00
port = 8888;
bind_address = "127.0.0.1";
secret_key = "asdfkljlksjd38107e17u00d28481#*@)$)*";
limiter = true;
public_instance = true;
image_proxy = true;
method = "GET";
};
2026-03-30 16:02:55 +08:00
};
};
}