web-browser: clean up some dead comments, defaults

This commit is contained in:
Colin 2023-06-26 10:11:22 +00:00
parent a8025550d5
commit f0d7d6877b

View File

@ -13,13 +13,9 @@ let
# allow easy switching between firefox and librewolf with `defaultSettings`, below # allow easy switching between firefox and librewolf with `defaultSettings`, below
librewolfSettings = { librewolfSettings = {
browser = pkgs.librewolf-unwrapped; browser = pkgs.librewolf-unwrapped;
# browser = pkgs.librewolf-unwrapped.overrideAttrs (drv: {
# # this allows side-loading unsigned addons
# MOZ_REQUIRE_SIGNING = false;
# });
libName = "librewolf"; libName = "librewolf";
dotDir = ".librewolf"; dotDir = ".librewolf";
cacheDir = ".cache/librewolf"; # TODO: is it? cacheDir = ".cache/librewolf";
desktop = "librewolf.desktop"; desktop = "librewolf.desktop";
}; };
firefoxSettings = { firefoxSettings = {
@ -72,7 +68,10 @@ let
}; };
UserMessaging = { UserMessaging = {
ExtensionRecommendations = false; ExtensionRecommendations = false;
FeatureRecommendations = false;
SkipOnboarding = true; SkipOnboarding = true;
UrlbarInterventions = false;
WhatsNew = false;
}; };
# these were taken from Librewolf # these were taken from Librewolf