move searxng to port 5364

This commit is contained in:
Sean Kovacs 2026-02-20 16:43:31 -05:00
commit 00778aadbb
Signed by: sckova
GPG key ID: 00F325187C68651A
2 changed files with 3 additions and 3 deletions

View file

@ -207,7 +207,7 @@
"browser.newtabpage.activity-stream.showSponsoredTopSites" = false; "browser.newtabpage.activity-stream.showSponsoredTopSites" = false;
"browser.newtabpage.activity-stream.showWeather" = false; "browser.newtabpage.activity-stream.showWeather" = false;
"browser.download.autoHideButton" = false; "browser.download.autoHideButton" = false;
"browser.startup.homepage" = "http://localhost:8080/"; "browser.startup.homepage" = "http://localhost:5364/";
# Disable Firefox's machine learning (AI) features # Disable Firefox's machine learning (AI) features
"browser.ml.enable" = false; "browser.ml.enable" = false;
@ -369,7 +369,7 @@
searxng = { searxng = {
name = "SearXNG"; name = "SearXNG";
urls = [ { template = "http://localhost:8080/search?q={searchTerms}"; } ]; urls = [ { template = "http://localhost:5364/search?q={searchTerms}"; } ];
icon = searchIcon; icon = searchIcon;
definedAliases = [ "@go" ]; definedAliases = [ "@go" ];
}; };

View file

@ -16,7 +16,7 @@
pkgs.runCommand "gen-key" { buildInputs = [ pkgs.openssl ]; } "openssl rand -hex 32 > $out" pkgs.runCommand "gen-key" { buildInputs = [ pkgs.openssl ]; } "openssl rand -hex 32 > $out"
) )
); );
port = 8080; port = 5364;
bind_address = "127.0.0.1"; bind_address = "127.0.0.1";
}; };