nixos/firefox: only use en-US locale

This commit is contained in:
Primrose 2025-07-04 10:13:20 +02:00
parent 33a7a415cc
commit 482506fcd2
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 3 additions and 2 deletions

View file

@ -10,8 +10,6 @@ in {
enable = true; enable = true;
policies = { policies = {
RequestedLocales = ["fr" "en-US" "zh-TW"];
SearchEngines = { SearchEngines = {
Default = "Google en@en"; Default = "Google en@en";
Remove = ["Google"]; Remove = ["Google"];

View file

@ -5,6 +5,9 @@ in {
# https://mozilla.github.io/policy-templates # https://mozilla.github.io/policy-templates
# The following have more complex logic, keep them as policies and not profiles # The following have more complex logic, keep them as policies and not profiles
policies = { policies = {
# Trans lations are of poor quality anyways
RequestedLocales = ["en-US"];
SearchEngines = { SearchEngines = {
Remove = ["Bing" "DuckDuckGo" "Qwant" "eBay"]; Remove = ["Bing" "DuckDuckGo" "Qwant" "eBay"];
}; };