diff --git a/hosts/architect/searx.nix b/hosts/architect/searx.nix index 75a686e..559b746 100644 --- a/hosts/architect/searx.nix +++ b/hosts/architect/searx.nix @@ -27,6 +27,7 @@ in safe_search = 0; autocomplete = "google"; prefer_configured_language = false; + formats = [ "html" "json"]; }; ui = { @@ -41,10 +42,9 @@ in engines = [ { name = "google"; disabled = false; } { name = "bing"; disabled = false; } - { name = "qwant"; disabled = false; } - { name = "brave"; disabled = false; } - # keep getting access denied (!?) - { name = "duckduckgo"; disabled = true; } + { name = "qwant"; disabled = true; } + { name = "brave"; disabled = true; } + { name = "duckduckgo"; disabled = false; } ]; }; }; @@ -55,7 +55,7 @@ in locations."/" = { port = config.services.searx.settings.server.port; allowLan = true; - + allowWAN = true; allow = [ tailscale.net ];