Merge branch 'main' of ssh://grimmauld.de:2222/Grimmauld/grimm-nixos-laptop
This commit is contained in:
commit
5f41e7b461
3 changed files with 9 additions and 3 deletions
|
@ -91,9 +91,15 @@ in
|
|||
};
|
||||
|
||||
SearchEngines = {
|
||||
# Default = "DuckDuckGo";
|
||||
Default = "SearXNG";
|
||||
Remove = ["Bing" "Amazon.ca" "eBay"];
|
||||
Add = [
|
||||
{
|
||||
Name = "SearXNG";
|
||||
URLTemplate = "http://search.grimmauld.de/search?q={searchTerms}&safesearch=1&categories=general";
|
||||
IconURL = "https://raw.githubusercontent.com/searxng/searxng/refs/heads/master/searx/static/themes/simple/img/favicon.svg";
|
||||
Alias = "searx";
|
||||
}
|
||||
{
|
||||
Name = "Nix Package Search";
|
||||
URLTemplate = "https://search.nixos.org/packages?channel=unstable&query={searchTerms}";
|
||||
|
@ -152,7 +158,6 @@ in
|
|||
"network.connectivity-service.DNSv6.domain" = "::1";
|
||||
"network.dns.localDomains" = "::1";
|
||||
"network.dns.forceResolve" = true;
|
||||
"network.dns.disableIPv6" = true;
|
||||
|
||||
"extensions.formautofill.addresses.enabled" = false;
|
||||
"extensions.formautofill.creditCards.enabled" = false;
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
nix.package = pkgs.lix;
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
zramSwap.enable = true;
|
||||
networking.enableIPv6 = true;
|
||||
# zramSwap.memoryPercent = 50;
|
||||
|
||||
grimmShared = {
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
odoh_servers = false;
|
||||
require_nolog = true;
|
||||
require_nofilter = true;
|
||||
listen_addresses = [ "127.0.0.1:53" ];
|
||||
listen_addresses = [ "127.0.0.1:53" "[::1]:53" ];
|
||||
proxy = "socks5://${config.services.tor.torsocks.server}";
|
||||
force_tcp = true;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue