dotfiles/modules/desktop/apps/firefox.nix

63 lines
2.0 KiB
Nix
Raw Normal View History

2022-04-18 12:33:07 +02:00
{ config, lib, pkgs, inputs, ... }:
let
2022-04-20 17:47:54 +02:00
arkenfox = builtins.readFile "${inputs.arkenfox-userjs}/user.js";
2022-04-18 12:33:07 +02:00
overrides = {
## arkenfox overrides
# automatic search
"keyword.enabled" = true;
"browser.search.suggest.enabled" = true;
"browser.urlbar.suggest.searches" = true;
2021-11-16 20:57:04 +01:00
2022-06-27 17:57:01 +02:00
# startup page
"browser.startup.homepage" = "https://searxng.moritzboeh.me/";
"browser.startup.page" = 1;
2022-04-18 12:33:07 +02:00
# drm
"media.eme.enabled" = true;
2021-11-16 20:57:04 +01:00
2022-04-18 12:33:07 +02:00
# sanitisation
"privacy.clearOnShutdown.history" = false;
2021-11-16 20:57:04 +01:00
2022-04-20 16:42:25 +02:00
# disable letterboxing
"privacy.resistFingerprinting.letterboxing" = false;
2022-04-18 12:33:07 +02:00
## OTHER
# Dont show warning when accessing about:config
"browser.aboutConfig.showWarning" = false;
2021-11-16 20:57:04 +01:00
2022-04-18 12:33:07 +02:00
# Hide bookmarks
"browser.toolbars.bookmarks.visibility" = "never";
# Smooth scrolling
"general.smoothScroll.lines.durationMaxMS" = 125;
"general.smoothScroll.lines.durationMinMS" = 125;
"general.smoothScroll.mouseWheel.durationMaxMS" = 200;
"general.smoothScroll.mouseWheel.durationMinMS" = 100;
"general.smoothScroll.msdPhysics.enabled" = true;
"general.smoothScroll.other.durationMaxMS" = 125;
"general.smoothScroll.other.durationMinMS" = 125;
"general.smoothScroll.pages.durationMaxMS" = 125;
"general.smoothScroll.pages.durationMinMS" = 125;
"mousewheel.min_line_scroll_amount" = 40;
"mousewheel.system_scroll_override_on_root_content.enabled" = true;
"mousewheel.system_scroll_override_on_root_content.horizontal.factor" = 175;
"mousewheel.system_scroll_override_on_root_content.vertical.factor" = 175;
"toolkit.scrollbox.horizontalScrollDistance" = 6;
"toolkit.scrollbox.verticalScrollDistance" = 2;
};
2021-11-16 20:57:04 +01:00
2022-04-18 12:33:07 +02:00
fullUserJs = ''
// Arkenfox user.js
${arkenfox}
// Overrides
${lib.concatStrings (lib.mapAttrsToList (name: value: ''
user_pref("${name}", ${builtins.toJSON value});
'') overrides)}'';
in {
home-manager.users.moritz.programs.firefox = {
enable = true;
profiles."default".extraConfig = fullUserJs;
2021-11-16 20:57:04 +01:00
};
}