diff options
author | tzlil <tzlils@protonmail.com> | 2023-08-03 01:32:36 +0300 |
---|---|---|
committer | tzlil <tzlils@protonmail.com> | 2023-08-03 01:32:36 +0300 |
commit | 4963c10400387b2f9f62596de4937329a1c297d3 (patch) | |
tree | 8fe54a273b2cd5db2716ff43aa766412e78280bf /mixins/firefox | |
parent | c71e8c0aaae704e2e157f5bb9f84b314dfe304b2 (diff) |
added arkenfox, done for today
Diffstat (limited to 'mixins/firefox')
-rw-r--r-- | mixins/firefox/default.nix | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/mixins/firefox/default.nix b/mixins/firefox/default.nix index 754752d..e3fd84e 100644 --- a/mixins/firefox/default.nix +++ b/mixins/firefox/default.nix @@ -258,9 +258,14 @@ in extraConfig = builtins.readFile ( builtins.fetchurl { url = "https://raw.githubusercontent.com/arkenfox/user.js/master/user.js"; - sha256 = "sha256:1mb1l9dgb8mfl70lhwykgfphqnxxi1xw0h3hlgj8jyj6n1mn5v8f"; + sha256 = "sha256:165c977fwncvrv0c8ddi633ckw97p3pkvjid5fj6j48smsv08axk"; } - ); + ) + '' + user_pref('keyword.enabled', true); + user_pref("browser.startup.homepage", "https://lobste.rs"); + user_pref("browser.startup.page", 1); + user_pref("privacy.resistFingerprinting", false); + ''; settings = { # for custom browser style "toolkit.legacyUserProfileCustomizations.stylesheets" = true; @@ -268,7 +273,6 @@ in "browser.newtabpage.pinned" = [ {url = "https://tzlil.net";} ]; - "browser.startup.homepage" = "https://lobste.rs"; "extensions.activeThemeID" = "{e410fec2-1cbd-4098-9944-e21e708418af}"; "svg.context-properties.content.enabled" = true; |