nix/common/dotfiles/firefox.nix

44 lines
1.3 KiB
Nix
Raw Normal View History

2023-07-01 15:24:37 +02:00
{ config, pkgs, ... }: {
programs.firefox = {
enable = true;
profiles.default = {
settings = {
"browser.startup.homepage" = "https://searx.sysctl.io";
"browser.search.region" = "US";
"browser.search.isUS" = false;
"distribution.searchplugins.defaultLocale" = "en-US";
"general.useragent.locale" = "en-US";
"browser.bookmarks.showMobileBookmarks" = false;
"browser.newtabpage.pinned" = [{
title = "Blank";
url = "about:blank";
}];
};
search.force = true;
search.order = [
"DuckDuckGo"
];
search.engines = {
2023-07-01 15:25:57 +02:00
"Nix Packages" = {
urls = [{
template = "https://search.nixos.org/packages";
params = [
{ name = "type"; value = "packages"; }
{ name = "query"; value = "{searchTerms}"; }
];
}];
2023-07-01 15:24:37 +02:00
2023-07-01 15:25:57 +02:00
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
definedAliases = [ "@np" ];
};
2023-07-01 15:24:37 +02:00
2023-07-01 15:25:57 +02:00
"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" ];
};
2023-07-01 15:24:37 +02:00
};
};
2023-07-01 15:25:57 +02:00
};
2023-07-01 15:24:37 +02:00
}