nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 3597c3812fd64e1dae6769affd3ed7b64a03f2e7
parent a3c6cad0e5bf001e87256eba449c6e8cfaaf0dcd
Author: Toni Brown <me@tb148.net>
Date:   Sun, 10 May 2026 23:43:22 +0800

update caddy proxy

Diffstat:
Mlocal/service/searx/default.nix | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/local/service/searx/default.nix b/local/service/searx/default.nix @@ -2,6 +2,12 @@ services.searx = { enable = true; environmentFile = "${config.users.users.tb148.home}/.searxng.env"; - settings.search.formats = ["html" "json"]; + settings = { + search.formats = ["html" "json"]; + outgoing.proxies = rec { + http = ["socks5://localhost:7776"]; + https = http; + }; + }; }; }