14 lines
227 B
Nix
14 lines
227 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.searx = {
|
|
enable = true;
|
|
redisCreateLocally = true;
|
|
|
|
settings.server = {
|
|
bind_address = "::1";
|
|
|
|
port = 8080;
|
|
};
|
|
};
|
|
} |