moved all services out of nixos containers

fixed a lot as well
This commit is contained in:
Gerg-L 2023-09-18 22:38:12 -04:00
parent 4fd4b0ad74
commit 66ee1bb541
Signed by: gerg-l
SSH key fingerprint: SHA256:FPYDHIkvMocr4wdmZXpgpJjsb2Tw6rASs2ISPbOb0KI
10 changed files with 247 additions and 266 deletions

View file

@ -1,34 +0,0 @@
_: {
config,
pkgs,
...
}: {
sops.secrets.searxngenv = {};
services.searx = {
enable = true;
runInUwsgi = false;
package = pkgs.searxng;
environmentFile = config.sops.secrets.searxngenv.path;
settings = {
server = {
port = 8765;
secret_key = "@SEARXNG_SECRET@";
};
search.formats = [
"html"
"json"
];
engines = [
{
name = "bing";
disabled = true;
}
{
name = "brave";
disabled = true;
}
];
ui.theme_args.simple_style = "dark";
};
};
}