mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
configure firefox
This commit is contained in:
parent
99cbae19f1
commit
966e1976c4
1 changed files with 22 additions and 1 deletions
|
@ -1,7 +1,6 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
firefox
|
||||
brave
|
||||
gimp
|
||||
mpv
|
||||
|
@ -23,6 +22,28 @@
|
|||
];
|
||||
})
|
||||
|
||||
(wrapFirefox firefox-unwrapped {
|
||||
extraPolicies = {
|
||||
CaptivePortal = false;
|
||||
DisablePocket = true;
|
||||
DisableFirefoxStudies = true;
|
||||
OfferToSaveLogins = false;
|
||||
DisableFormHistory = true;
|
||||
SearchSuggestEnabled = false;
|
||||
EnableTrackingProtection = {
|
||||
Value = true;
|
||||
Locked = true;
|
||||
Cryptomining = true;
|
||||
Fingerprinting = true;
|
||||
};
|
||||
Preferences = {
|
||||
"extensions.formautofill.available" = { Status = "locked"; Value = "off"; };
|
||||
"network.cookie.cookieBehavior" = { Status = "locked"; Value = 4; };
|
||||
"network.IDN_show_punycode" = { Status = "locked"; Value = true; };
|
||||
};
|
||||
};
|
||||
})
|
||||
|
||||
];
|
||||
|
||||
services.xserver.deviceSection = ''
|
||||
|
|
Loading…
Reference in a new issue