mirror of https://git.jolheiser.com/dotnix.git
chore: update firefox for search engines
Signed-off-by: jolheiser <john.olheiser@gmail.com>teamcity
parent
d8a3051db1
commit
3d4267bd98
|
@ -2,8 +2,42 @@
|
||||||
programs.firefox = {
|
programs.firefox = {
|
||||||
enable = true;
|
enable = true;
|
||||||
profiles.default = {
|
profiles.default = {
|
||||||
search.default = "DuckDuckGo";
|
search = {
|
||||||
search.force = true;
|
default = "Kagi";
|
||||||
|
privateDefault = "DuckDuckGo";
|
||||||
|
order = ["Kagi" "DuckDuckGo"];
|
||||||
|
force = true;
|
||||||
|
engines = {
|
||||||
|
"Kagi" = {
|
||||||
|
definedAliases = ["@k"];
|
||||||
|
urls = [
|
||||||
|
{
|
||||||
|
template = "https://kagi.com/search";
|
||||||
|
params = [
|
||||||
|
{
|
||||||
|
name = "q";
|
||||||
|
value = "{searchTerms}";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
"DuckDuckGo" = {
|
||||||
|
definedAliases = ["@d"];
|
||||||
|
urls = [
|
||||||
|
{
|
||||||
|
template = "https://duckduckgo.com/";
|
||||||
|
params = [
|
||||||
|
{
|
||||||
|
name = "q";
|
||||||
|
value = "{searchTerms}";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||||
bitwarden
|
bitwarden
|
||||||
clearurls
|
clearurls
|
||||||
|
@ -22,9 +56,9 @@
|
||||||
"browser.newtabpage.activity-stream.feeds.section.topstories" = false;
|
"browser.newtabpage.activity-stream.feeds.section.topstories" = false;
|
||||||
"browser.newtabpage.activity-stream.showSponsoredTopSites" = false;
|
"browser.newtabpage.activity-stream.showSponsoredTopSites" = false;
|
||||||
"browser.newtabpage.pinned" = builtins.toJSON [
|
"browser.newtabpage.pinned" = builtins.toJSON [
|
||||||
{url = "https://mynixos.com/";}
|
|
||||||
{url = "https://github.com/";}
|
{url = "https://github.com/";}
|
||||||
{url = "https://git.jojodev.com/";}
|
{url = "https://git.jojodev.com/";}
|
||||||
|
{url = "https://git.jolheiser.com";}
|
||||||
];
|
];
|
||||||
"browser.fixup.domainwhitelist.go" = true; # golink
|
"browser.fixup.domainwhitelist.go" = true; # golink
|
||||||
};
|
};
|
||||||
|
@ -85,8 +119,15 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "ugit";
|
||||||
|
tags = ["git" "ugit"];
|
||||||
|
keyword = "ugit";
|
||||||
|
url = "https://git.jolheiser.com";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
# Not in the toolbar, but still usable via keyword/searching
|
||||||
{
|
{
|
||||||
name = "Go Playground";
|
name = "Go Playground";
|
||||||
tags = ["golang"];
|
tags = ["golang"];
|
||||||
|
|
Loading…
Reference in New Issue