feat(users/rus07tam): add search engine in firefox
Some checks failed
Nix CI / build (push) Failing after 6m15s
Some checks failed
Nix CI / build (push) Failing after 6m15s
This commit is contained in:
parent
2e175cce9f
commit
9f05dba715
1 changed files with 35 additions and 1 deletions
|
|
@ -11,8 +11,42 @@
|
|||
isDefault = true;
|
||||
search = {
|
||||
force = true;
|
||||
default = "ddg";
|
||||
default = "searx";
|
||||
engines = {
|
||||
"GitHub" = {
|
||||
urls = [
|
||||
{
|
||||
template = "https://github.com/search";
|
||||
params = [
|
||||
{
|
||||
name = "q";
|
||||
value = "{searchTerms}";
|
||||
}
|
||||
{
|
||||
name = "type";
|
||||
value = "code";
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
icon = "https://github.githubassets.com/favicons/favicon.svg";
|
||||
definedAliases = [ "@gh" ];
|
||||
};
|
||||
"SearXNG" = {
|
||||
urls = [
|
||||
{
|
||||
template = "https://search.ruject.fun";
|
||||
params = [
|
||||
{
|
||||
name = "q";
|
||||
value = "{searchTerms}";
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
icon = "${pkgs.searxng}/share/static/themes/simple/img/favicon.svg";
|
||||
definedAliases = [ "@searx" "@searxng" ];
|
||||
};
|
||||
"Nix Packages" = {
|
||||
urls = [
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue