nixos-system-config/modules/nixos/multimedia/web/firefox.nix

44 lines
1,010 B
Nix
Raw Normal View History

2025-01-24 22:13:40 +01:00
{ username, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
tor-browser
];
environment.persistence."/nix/config" = {
users."${username}".directories = [
".config/mozilla"
];
};
programs.firefox = {
enable = true;
2025-01-24 22:15:56 +01:00
package = pkgs.firefox-esr;
2025-01-24 22:13:40 +01:00
policies = {
EnableTrackingProtection = {
Value = true;
Cryptomining = true;
Fingerprinting = true;
EmailTracking = true;
};
DisableTelemetry = true;
DisablePocket = true;
DisableFirefoxStudies = true;
DisableFirefoxAccounts = false;
DisableAccounts = false;
DontCheckDefaultBrowser = true;
OverrideFirstRunPage = "";
OverridePostUpdatePage = "";
NoDefaultBookmarks = true;
Cookies = {
Behaviour = "reject-foreign";
BehaviourPrivateBrowsing = "reject-foreign";
};
SearchEngines = { # ESR only
Remove = [ "Bing" "Google" "DuckDuckGo" "Wikipedia (en)" ];
};
};
};
}