disabled searxng and docker from workstation

This commit is contained in:
2024-04-04 00:22:13 -06:00
parent da91eb3699
commit 21ec9d2ca1

View File

@@ -69,7 +69,6 @@ passwords and other secrets.
imports = [ imports = [
# <agenix/modules/age.nix> # <agenix/modules/age.nix>
./fstab.nix ./fstab.nix
./docker.nix
(import "${home-manager}/nixos") (import "${home-manager}/nixos")
# nixGaming.nixosModules.pipewireLowLatency # nixGaming.nixosModules.pipewireLowLatency
]; ];
@@ -1057,25 +1056,6 @@ services = {
httpListenAddr = "0.0.0.0"; httpListenAddr = "0.0.0.0";
directoryRoot = "/resilio"; directoryRoot = "/resilio";
}; };
searx = {
enable = true;
package = pkgs.searxng;
runInUwsgi = true;
redisCreateLocally = true;
settings = {
server = {
port = 8888;
bind_address = "0.0.0.0";
secret_key = "wowaweewa";
};
};
uwsgiConfig = {
disable-logging = true;
http = ":8888"; # serve via HTTP...
socket = "/run/searx/searx.sock"; # ...or UNIX socket
chmod-socket = "660"; # allow the searx group to read/write to the socket
};
};
}; };
#+end_src #+end_src