From 5075593ce0d08aab8c8829415cfb596b686e9cad Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 6 Feb 2026 13:45:18 +0100 Subject: [PATCH] feat(nix): add supported search formats to Searx config - Added `html`, `json`, and `rss` to the `search.formats` list in `searx.nix`. - Enhances flexibility by allowing multiple output formats for search results. --- systems/x86_64-linux/sgx/searx.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/systems/x86_64-linux/sgx/searx.nix b/systems/x86_64-linux/sgx/searx.nix index 9cc1c3a..4f7f702 100644 --- a/systems/x86_64-linux/sgx/searx.nix +++ b/systems/x86_64-linux/sgx/searx.nix @@ -13,6 +13,11 @@ server = { secret_key = config.sops.secrets."searx/secret_key".path; }; + search.formats = [ + "html" + "json" + "rss" + ]; }; };