21 lines
406 B
Nix
21 lines
406 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
|
|
services.searx = {
|
|
enable = true;
|
|
redisCreateLocally = true;
|
|
settings = {
|
|
server = {
|
|
base_url = "https://searxng.knossos.arkadi.one";
|
|
port = 8888;
|
|
bind_address = "127.0.0.1";
|
|
secret_key = "asdfkljlksjd38107e17u00d28481#*@)$)*";
|
|
limiter = true;
|
|
public_instance = true;
|
|
image_proxy = true;
|
|
method = "GET";
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|