This commit is contained in:
4DBug
2026-02-07 22:49:27 -06:00
parent 5c96472dbd
commit 6e0a35e990
5 changed files with 18 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
services.searx = {
enable = true;
redisCreateLocally = true;
settings.server = {
bind_address = "::1";
port = 8080;
};
};
}