nixos

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

default.nix (278B)


      1 {config, ...}: {
      2 	services.searx = {
      3 		enable = true;
      4 		environmentFile = "${config.users.users.tb148.home}/.searxng.env";
      5 		settings = {
      6 			search.formats = ["html" "json"];
      7 			outgoing.proxies = rec {
      8 				http = ["socks5://localhost:7776"];
      9 				https = http;
     10 			};
     11 		};
     12 	};
     13 }