13 lines
291 B
Nix
13 lines
291 B
Nix
{ pkgs, config, ... }: {
|
|
environment.systemPackages = with pkgs; [ searxng ];
|
|
services.searx = {
|
|
enable = true;
|
|
settings = {
|
|
server = {
|
|
port = 8888;
|
|
bind_address = "100.72.0.2";
|
|
secret_key = "hjkjkjdfkjkjdsfhfgjhkjhkjsdhkjh";
|
|
};
|
|
};
|
|
};
|
|
}
|