mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 19:57:19 +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;
|
"Horizontal Spacing" = 1;
|
||||||
"Idle Code" = 0;
|
"Idle Code" = 0;
|
||||||
"Jobs to Ignore" = [ "rlogin" "ssh" "slogin" "telnet" ];
|
"Jobs to Ignore" = [ "rlogin" "ssh" "slogin" "telnet" ];
|
||||||
"Keyboard Map" = null;
|
|
||||||
"Mouse Reporting" = true;
|
"Mouse Reporting" = true;
|
||||||
"Non Ascii Font" = "Monaco 12";
|
"Non Ascii Font" = "Monaco 12";
|
||||||
"Non-ASCII Anti Aliased" = true;
|
"Non-ASCII Anti Aliased" = true;
|
||||||
|
|
|
@ -39,10 +39,10 @@
|
||||||
isDefault = true;
|
isDefault = true;
|
||||||
search = {
|
search = {
|
||||||
force = true;
|
force = true;
|
||||||
default = "DuckDuckGo";
|
default = "Google";
|
||||||
order = [
|
order = [
|
||||||
"DuckDuckGo"
|
|
||||||
"Google"
|
"Google"
|
||||||
|
"DuckDuckGo"
|
||||||
];
|
];
|
||||||
engines = {
|
engines = {
|
||||||
"Nix Packages" = {
|
"Nix Packages" = {
|
||||||
|
@ -66,24 +66,26 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
"Bing".metaData.hidden = true;
|
"Bing".metaData.hidden = true;
|
||||||
"Google".metaData.alias = "@g"; # builtin engines only support specifying one additional alias
|
"Google".metaData.alias = "@g";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
settings = {
|
settings = {
|
||||||
"browser.startup.homepage" = "https://github.com/willemml/org-notes";
|
"browser.startup.homepage" = "";
|
||||||
"browser.search.region" = "CA";
|
"browser.search.region" = "CA";
|
||||||
"browser.search.isUS" = false;
|
"browser.search.isUS" = false;
|
||||||
"distribution.searchplugins.defaultLocale" = "en-CA";
|
"distribution.searchplugins.defaultLocale" = "en-CA";
|
||||||
"general.useragent.locale" = "en-CA";
|
"general.useragent.locale" = "en-CA";
|
||||||
"browser.bookmarks.showMobileBookmarks" = true;
|
"browser.bookmarks.showMobileBookmarks" = true;
|
||||||
"browser.newtabpage.pinned" = [{
|
"browser.newtabpage.pinned" = [
|
||||||
title = "Notes";
|
{
|
||||||
url = "https://github.com/willemml/org-notes";
|
title = "Notes";
|
||||||
}
|
url = "https://github.com/willemml/org-notes";
|
||||||
|
}
|
||||||
{
|
{
|
||||||
title = "Dotfiles";
|
title = "Dotfiles";
|
||||||
url = "https://github.com/willemml/dotfiles.nix";
|
url = "https://github.com/willemml/dotfiles.nix";
|
||||||
}];
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||||
browserpass
|
browserpass
|
||||||
|
|
Loading…
Add table
Reference in a new issue