From 58ca4f3d556cdad3fc80c2bede7778a3fd98eddb Mon Sep 17 00:00:00 2001 From: Johannes Rothe Date: Sat, 16 Nov 2024 20:47:59 +0100 Subject: [PATCH] Enable searxng on tien --- vps-configuration.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/vps-configuration.nix b/vps-configuration.nix index 2390881..1f24ddf 100644 --- a/vps-configuration.nix +++ b/vps-configuration.nix @@ -58,6 +58,17 @@ }; }; + services.searx = { + enable = true; + redisCreateLocally = true; + settings.server = { + bind_address = "0.0.0.0"; + port = 8888; + secret_key = "localonly"; + }; + }; + + services.tailscale.enable = true; system.stateVersion = "24.05";