Add firefox config
This commit is contained in:
parent
0b90db8153
commit
8d1a8f35b6
2 changed files with 44 additions and 0 deletions
43
common/dotfiles/firefox.nix
Normal file
43
common/dotfiles/firefox.nix
Normal 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" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -5,5 +5,6 @@
|
|||
../../common/dotfiles/git.nix
|
||||
../../common/dotfiles/neovim.nix
|
||||
../../common/dotfiles/bash.nix
|
||||
../../common/dotfiles/firefox.nix
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue