mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27:17 +00:00
Use google in firefox, fix iterm 2 config.
This commit is contained in:
parent
676424ae0f
commit
60189cb0e4
2 changed files with 11 additions and 10 deletions
|
@ -205,7 +205,6 @@ let
|
|||
"Horizontal Spacing" = 1;
|
||||
"Idle Code" = 0;
|
||||
"Jobs to Ignore" = [ "rlogin" "ssh" "slogin" "telnet" ];
|
||||
"Keyboard Map" = null;
|
||||
"Mouse Reporting" = true;
|
||||
"Non Ascii Font" = "Monaco 12";
|
||||
"Non-ASCII Anti Aliased" = true;
|
||||
|
|
|
@ -39,10 +39,10 @@
|
|||
isDefault = true;
|
||||
search = {
|
||||
force = true;
|
||||
default = "DuckDuckGo";
|
||||
default = "Google";
|
||||
order = [
|
||||
"DuckDuckGo"
|
||||
"Google"
|
||||
"DuckDuckGo"
|
||||
];
|
||||
engines = {
|
||||
"Nix Packages" = {
|
||||
|
@ -66,24 +66,26 @@
|
|||
};
|
||||
|
||||
"Bing".metaData.hidden = true;
|
||||
"Google".metaData.alias = "@g"; # builtin engines only support specifying one additional alias
|
||||
"Google".metaData.alias = "@g";
|
||||
};
|
||||
};
|
||||
settings = {
|
||||
"browser.startup.homepage" = "https://github.com/willemml/org-notes";
|
||||
"browser.startup.homepage" = "";
|
||||
"browser.search.region" = "CA";
|
||||
"browser.search.isUS" = false;
|
||||
"distribution.searchplugins.defaultLocale" = "en-CA";
|
||||
"general.useragent.locale" = "en-CA";
|
||||
"browser.bookmarks.showMobileBookmarks" = true;
|
||||
"browser.newtabpage.pinned" = [{
|
||||
title = "Notes";
|
||||
url = "https://github.com/willemml/org-notes";
|
||||
}
|
||||
"browser.newtabpage.pinned" = [
|
||||
{
|
||||
title = "Notes";
|
||||
url = "https://github.com/willemml/org-notes";
|
||||
}
|
||||
{
|
||||
title = "Dotfiles";
|
||||
url = "https://github.com/willemml/dotfiles.nix";
|
||||
}];
|
||||
}
|
||||
];
|
||||
};
|
||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
browserpass
|
||||
|
|
Loading…
Add table
Reference in a new issue