mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
70c8d3f27a
Not needed and seems to actually break things since it's included by default in LibreWolf.
85 lines
2.0 KiB
Nix
85 lines
2.0 KiB
Nix
{
|
|
pkgs,
|
|
lib,
|
|
nix-config,
|
|
phone,
|
|
...
|
|
}:
|
|
|
|
let
|
|
inherit (lib) mkIf singleton;
|
|
inherit (nix-config.packages.${pkgs.system}) friendlyfox;
|
|
in
|
|
{
|
|
programs.librewolf = {
|
|
enable = true;
|
|
|
|
package = pkgs.librewolf.override {
|
|
cfg.speechSynthesisSupport = false;
|
|
};
|
|
|
|
profiles.default = {
|
|
extensions = with nix-config.packages.${pkgs.system}; [
|
|
yomitan
|
|
redlib
|
|
new-tab-identity
|
|
];
|
|
|
|
search = {
|
|
force = true;
|
|
default = "Mullvad";
|
|
privateDefault = "Mullvad";
|
|
|
|
engines = {
|
|
Mullvad = {
|
|
urls = singleton {
|
|
template = "https://leta.mullvad.net";
|
|
|
|
params = singleton {
|
|
name = "q";
|
|
value = "{searchTerms}";
|
|
};
|
|
};
|
|
|
|
icon = "${pkgs.mullvad-vpn}/share/icons/hicolor/32x32/apps/mullvad-vpn.png";
|
|
};
|
|
};
|
|
};
|
|
|
|
settings = {
|
|
"extensions.autoDisableScopes" = 0;
|
|
};
|
|
};
|
|
|
|
settings = {
|
|
"middlemouse.paste" = false;
|
|
|
|
"browser.download.useDownloadDir" = true;
|
|
"browser.tabs.insertAfterCurrent" = true;
|
|
"browser.tabs.warnOnClose" = true;
|
|
"browser.toolbars.bookmarks.visibility" = "never";
|
|
"browser.quitShortcut.disabled" = true;
|
|
"browser.sessionstore.restore_pinned_tabs_on_demand" = true;
|
|
|
|
"browser.urlbar.suggest.bookmark" = false;
|
|
"browser.urlbar.suggest.engines" = false;
|
|
"browser.urlbar.suggest.history" = false;
|
|
"browser.urlbar.suggest.openpage" = false;
|
|
"browser.urlbar.suggest.topsites" = false;
|
|
"browser.urlbar.trimHttps" = true;
|
|
|
|
"sidebar.position_start" = false;
|
|
"findbar.highlightAll" = true;
|
|
|
|
"xpinstall.signatures.required" = false;
|
|
|
|
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
|
};
|
|
};
|
|
|
|
home.file = mkIf phone {
|
|
".librewolf/default/chrome/userChrome.css".source = "${friendlyfox}/userChrome.css";
|
|
".librewolf/default/chrome/userContent.css".source = "${friendlyfox}/userContent.css";
|
|
};
|
|
}
|