21 lines
No EOL
460 B
Nix
21 lines
No EOL
460 B
Nix
{ ... }: {
|
|
services.searx = {
|
|
enable = true;
|
|
redisCreateLocally = true;
|
|
environmentFile = "/mnt/data/apps/searxng/.env";
|
|
settings = {
|
|
server = {
|
|
bind_address = "127.0.0.1";
|
|
port = 8091;
|
|
secret_key = "$SECRET_KEY";
|
|
};
|
|
general = {
|
|
debug = false;
|
|
donation_url = false;
|
|
contact_url = false;
|
|
privacy_policy_url = false;
|
|
enable_metrics = true;
|
|
};
|
|
};
|
|
};
|
|
} |