mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
refactor firefox settings
This commit is contained in:
parent
eab4920463
commit
c016fe803f
1 changed files with 12 additions and 8 deletions
|
@ -50,14 +50,18 @@ with lib;
|
||||||
OfferToSaveLogins = false;
|
OfferToSaveLogins = false;
|
||||||
DisableFormHistory = true;
|
DisableFormHistory = true;
|
||||||
SearchSuggestEnabled = false;
|
SearchSuggestEnabled = false;
|
||||||
Preferences = {
|
|
||||||
"browser.contentblocking.category" = { Status = "locked"; Value = "strict"; };
|
Preferences = builtins.mapAttrs
|
||||||
"browser.zoom.siteSpecific" = { Status = "locked"; Value = false; };
|
(n: v: { Value = v; Status = "locked"; })
|
||||||
"extensions.formautofill.available" = { Status = "locked"; Value = "off"; };
|
{
|
||||||
"media.setsinkid.enabled" = { Status = "locked"; Value = true; }; #GoogleVoice
|
"browser.contentblocking.category" = "strict";
|
||||||
"network.IDN_show_punycode" = { Status = "locked"; Value = true; };
|
"browser.zoom.siteSpecific" = false;
|
||||||
"ui.key.menuAccessKeyFocuses" = { Status = "locked"; Value = false; };
|
"extensions.formautofill.available" = "off";
|
||||||
|
"media.setsinkid.enabled" = true; #GoogleVoice
|
||||||
|
"network.IDN_show_punycode" = true;
|
||||||
|
"ui.key.menuAccessKeyFocuses" = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue