61 lines
2 KiB
Nix
61 lines
2 KiB
Nix
|
{ pkgs }:
|
||
|
{
|
||
|
force = true;
|
||
|
default = "whoogle";
|
||
|
order = [ "whoogle" "Searx" "Google" ];
|
||
|
engines = {
|
||
|
"Nix Packages" = {
|
||
|
urls = [{
|
||
|
template = "https://search.nixos.org/packages";
|
||
|
params = [
|
||
|
{ name = "type"; value = "packages"; }
|
||
|
{ name = "query"; value = "{searchTerms}"; }
|
||
|
];
|
||
|
}];
|
||
|
icon = "''${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||
|
definedAliases = [ "@np" ];
|
||
|
};
|
||
|
"Nix Options" = {
|
||
|
urls = [{
|
||
|
template = "https://search.nixos.org/options";
|
||
|
params = [
|
||
|
{ name = "query"; value = "{searchTerms}"; }
|
||
|
];
|
||
|
}];
|
||
|
icon = "''${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||
|
definedAliases = [ "@no" ];
|
||
|
};
|
||
|
"Home-Manager Options" = {
|
||
|
urls = [{
|
||
|
template = "https://home-manager-options.extranix.com/";
|
||
|
params = [
|
||
|
{ name = "query"; value = "{searchTerms}"; }
|
||
|
];
|
||
|
}];
|
||
|
icon = "''${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||
|
definedAliases = [ "@nhmo" ];
|
||
|
};
|
||
|
"NixOS Wiki" = {
|
||
|
urls = [{ template = "https://nixos.wiki/index.php?search={searchTerms}"; }];
|
||
|
iconUpdateURL = "https://nixos.wiki/favicon.png";
|
||
|
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||
|
definedAliases = [ "@nw" ];
|
||
|
};
|
||
|
"KubeSearch" = {
|
||
|
urls = [{ template = "https://kubesearch.dev/#{searchTerms}"; }];
|
||
|
iconUpdateURL = "https://kubernetes.io/images/wheel.svg";
|
||
|
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||
|
definedAliases = [ "@ks" ];
|
||
|
};
|
||
|
|
||
|
# "Searx" = {
|
||
|
# urls = [{ template = "https://searx.trux.dev/?q={searchTerms}"; }];
|
||
|
# iconUpdateURL = "https://nixos.wiki/favicon.png";
|
||
|
# updateInterval = 24 * 60 * 60 * 1000; # every day
|
||
|
# definedAliases = [ "@searx" ];
|
||
|
# };
|
||
|
"Bing".metaData.hidden = true;
|
||
|
"Google".metaData.alias = "@g"; # builtin engines only support specifying one additional alias
|
||
|
};
|
||
|
}
|