Files
nix/modules/searxng.nix
2026-02-07 22:49:27 -06:00

14 lines
227 B
Nix

{ config, pkgs, ... }:
{
services.searx = {
enable = true;
redisCreateLocally = true;
settings.server = {
bind_address = "::1";
port = 8080;
};
};
}