Add firefox config

This commit is contained in:
iFargle 2023-07-01 22:24:37 +09:00
parent 0b90db8153
commit 8d1a8f35b6
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,43 @@
{ 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 = {
"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" ];
};
"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" ];
};
};
};
}

View file

@ -5,5 +5,6 @@
../../common/dotfiles/git.nix ../../common/dotfiles/git.nix
../../common/dotfiles/neovim.nix ../../common/dotfiles/neovim.nix
../../common/dotfiles/bash.nix ../../common/dotfiles/bash.nix
../../common/dotfiles/firefox.nix
]; ];
} }