refactor(firefox): update config
This commit is contained in:
parent
61c9426d68
commit
a00fdeee6d
|
@ -85,7 +85,7 @@ let
|
||||||
"browser.uitour.enabled" = false;
|
"browser.uitour.enabled" = false;
|
||||||
"browser.startup.page" = 3;
|
"browser.startup.page" = 3;
|
||||||
"browser.toolbars.bookmarks.visibility" = "newtab";
|
"browser.toolbars.bookmarks.visibility" = "newtab";
|
||||||
"browser.tabs.drawInTitlebar" = true;
|
"browser.tabs.inTitlebar" = 1;
|
||||||
"browser.aboutConfig.showWarning" = false;
|
"browser.aboutConfig.showWarning" = false;
|
||||||
"signon.rememberSignons" = false;
|
"signon.rememberSignons" = false;
|
||||||
"services.sync.engine.passwords" = false;
|
"services.sync.engine.passwords" = false;
|
||||||
|
@ -108,6 +108,16 @@ let
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
commonExtensions = with firefox-addons; [
|
||||||
|
ublock-origin
|
||||||
|
bitwarden
|
||||||
|
vimium
|
||||||
|
languagetool
|
||||||
|
libredirect
|
||||||
|
to-deepl
|
||||||
|
zotero-connector
|
||||||
|
];
|
||||||
in {
|
in {
|
||||||
programs.firefox = {
|
programs.firefox = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -115,24 +125,16 @@ in {
|
||||||
private = {
|
private = {
|
||||||
id = 0;
|
id = 0;
|
||||||
settings = sharedSettings;
|
settings = sharedSettings;
|
||||||
|
# extensions = commonExtensions ++ (with firefox-addons; [ metamask ]);
|
||||||
};
|
};
|
||||||
work = {
|
work = {
|
||||||
id = 1;
|
id = 1;
|
||||||
settings = sharedSettings;
|
settings = sharedSettings;
|
||||||
|
# extensions = commonExtensions
|
||||||
|
# ++ (with firefox-addons; [ react-devtools reduxdevtools ]);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
extensions = with firefox-addons; [
|
extensions = commonExtensions ++ (with firefox-addons; [ metamask ]);
|
||||||
ublock-origin
|
|
||||||
bitwarden
|
|
||||||
vimium
|
|
||||||
languagetool
|
|
||||||
metamask
|
|
||||||
libredirect
|
|
||||||
to-deepl
|
|
||||||
zotero-connector
|
|
||||||
# not available yet:
|
|
||||||
# google-lighthouse
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = let
|
home.packages = let
|
||||||
|
|
Loading…
Reference in a new issue