diff --git a/modules/home/firefox/default.nix b/modules/home/firefox/default.nix index cb3fce7..47047e5 100755 --- a/modules/home/firefox/default.nix +++ b/modules/home/firefox/default.nix @@ -7,22 +7,24 @@ }; in { enable = true; + + profiles.default = { + settings = {}; + isDefault = true; + userChrome = builtins.readFile ./userChrome.css; + extensions = with pkgs.nur.repos.rycee.firefox-addons; + with pkgs.firefox-addons; [ + sponsorblock + ublock-origin + bitwarden + sidebery + firefox-translations + wayback-machine + ]; + }; + package = pkgs.wrapFirefox pkgs.firefox-unwrapped { - profiles.default = { - settings = {}; - isDefault = true; - userChrome = builtins.readFile ./userChrome.css; - extensions = with pkgs.nur.repos.rycee.firefox-addons; - with pkgs.firefox-addons; [ - sponsorblock - ublock-origin - bitwarden - sidebery - firefox-translations - wayback-machine - ]; - }; - extraPolicies = { + extraPolicies = { CaptivePortal = false; DisableFirefoxStudies = true; DisablePocket = true;