refactor firefox policies

This commit is contained in:
Adithya 2024-06-29 13:49:36 +05:30
parent d522518953
commit 8f913c4d1c
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C

View file

@ -1,3 +1,13 @@
let
lock = Value: {
inherit Value;
Status = "locked";
};
install = install_url: {
inherit install_url;
installation_mode = "force_installed";
};
in
{ {
DisableAppUpdate = true; DisableAppUpdate = true;
DisableFirefoxAccounts = true; DisableFirefoxAccounts = true;
@ -19,31 +29,12 @@
installation_mode = "blocked"; installation_mode = "blocked";
blocked_install_message = "Add it to firefox/policies.nix to install it."; blocked_install_message = "Add it to firefox/policies.nix to install it.";
}; };
"queryamoid@kaply.com" = { "addon@darkreader.org" = install "https://addons.mozilla.org/firefox/downloads/latest/darkreader/latest.xpi";
installation_mode = "force_installed"; "queryamoid@kaply.com" = install "https://github.com/mkaply/queryamoid/releases/download/v0.2/query_amo_addon_id-0.2-fx.xpi";
install_url = "https://github.com/mkaply/queryamoid/releases/download/v0.2/query_amo_addon_id-0.2-fx.xpi"; "uBlock0@raymondhill.net" = install "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
}; "{3c078156-979c-498b-8990-85f7987dd929}" = install "https://addons.mozilla.org/firefox/downloads/latest/sidebery/latest.xpi";
"{b743f56d-1cc1-4048-8ba6-f9c2ab7aa54d}" = { "{b743f56d-1cc1-4048-8ba6-f9c2ab7aa54d}" = install "https://addons.mozilla.org/firefox/downloads/latest/dracula-dark-colorscheme/latest.xpi";
installation_mode = "force_installed"; "{d634138d-c276-4fc8-924b-40a0ea21d284}" = install "https://addons.mozilla.org/firefox/downloads/latest/1password-x-password-manager/latest.xpi";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/dracula-dark-colorscheme/latest.xpi";
};
"{d634138d-c276-4fc8-924b-40a0ea21d284}" = {
installation_mode = "force_installed";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/1password-x-password-manager/latest.xpi";
};
"uBlock0@raymondhill.net" = {
installation_mode = "force_installed";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
};
"addon@darkreader.org" = {
installation_mode = "force_installed";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/darkreader/latest.xpi";
};
"{3c078156-979c-498b-8990-85f7987dd929}" = {
installation_mode = "force_installed";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/sidebery/latest.xpi";
};
}; };
FirefoxHome = { FirefoxHome = {
Search = true; Search = true;
@ -83,117 +74,33 @@
Locked = true; Locked = true;
}; };
Preferences = { Preferences = {
"accessibility.force_disabled" = { "accessibility.force_disabled" = lock 1;
Value = 1; "browser.aboutConfig.showWarning" = lock false;
Status = "locked"; "browser.aboutHomeSnippets.updateUrl" = lock "";
}; "browser.crashReports.unsubmittedCheck.autoSubmit2" = lock false;
"browser.aboutConfig.showWarning" = { "browser.selfsupport.url" = lock "";
Value = false; "browser.startup.homepage_override.mstone" = lock "ignore";
Status = "locked"; "browser.startup.homepage_override.buildID" = lock "";
}; "browser.tabs.firefox-view" = lock false;
"browser.aboutHomeSnippets.updateUrl" = { "browser.tabs.firefox-view-next" = lock false;
Value = ""; "browser.urlbar.suggest.history" = lock false;
Status = "locked"; "browser.urlbar.suggest.topsites" = lock false;
}; "dom.security.https_only_mode" = lock true;
"browser.crashReports.unsubmittedCheck.autoSubmit2" = { "extensions.htmlaboutaddons.recommendations.enabled" = lock false;
Value = false; "extensions.recommendations.themeRecommendationUrl" = lock "";
Status = "locked"; "gfx.canvas.accelerated.cache-items" = lock 4096;
}; "gfx.canvas.accelerated.cache-size" = lock 512;
"browser.selfsupport.url" = { "gfx.content.skia-font-cache-size" = lock 20;
Value = ""; "network.dns.disablePrefetch" = lock false;
Status = "locked"; "network.dns.disablePrefetchFromHTTPS" = lock false;
}; "network.http.max-connections" = lock 1800;
"browser.startup.homepage_override.mstone" = { "network.http.max-persistent-connections-per-server" = lock 10;
Value = "ignore"; "network.http.max-urgent-start-excessive-connections-per-host" = lock 5;
Status = "locked"; "network.http.pacing.requests.enabled" = lock false;
}; "network.IDN_show_punycode" = lock true;
"browser.startup.homepage_override.buildID" = { "network.predictor.enabled" = lock false;
Value = ""; "network.prefetch-next" = lock false;
Status = "locked"; "network.trr.mode" = lock 5;
}; "signon.management.page.breach-alerts.enabled" = lock false;
"browser.tabs.firefox-view" = {
Value = false;
Status = "locked";
};
"browser.tabs.firefox-view-next" = {
Value = false;
Status = "locked";
};
"browser.urlbar.suggest.history" = {
Value = false;
Status = "locked";
};
"browser.urlbar.suggest.topsites" = {
Value = false;
Status = "locked";
};
"dom.security.https_only_mode" = {
Value = true;
Status = "locked";
};
"extensions.htmlaboutaddons.recommendations.enabled" = {
Value = false;
Status = "locked";
};
"extensions.recommendations.themeRecommendationUrl" = {
Value = "";
Status = "locked";
};
"gfx.canvas.accelerated.cache-items" = {
Value = 4096;
Status = "locked";
};
"gfx.canvas.accelerated.cache-size" = {
Value = 512;
Status = "locked";
};
"gfx.content.skia-font-cache-size" = {
Value = 20;
Status = "locked";
};
"network.dns.disablePrefetch" = {
Value = false;
Status = "locked";
};
"network.dns.disablePrefetchFromHTTPS" = {
Value = false;
Status = "locked";
};
"network.http.max-connections" = {
Value = 1800;
Status = "locked";
};
"network.http.max-persistent-connections-per-server" = {
Value = 10;
Status = "locked";
};
"network.http.max-urgent-start-excessive-connections-per-host" = {
Value = 5;
Status = "locked";
};
"network.http.pacing.requests.enabled" = {
Value = false;
Status = "locked";
};
"network.IDN_show_punycode" = {
Value = true;
Status = "locked";
};
"network.predictor.enabled" = {
Value = false;
Status = "locked";
};
"network.prefetch-next" = {
Value = false;
Status = "locked";
};
"network.trr.mode" = {
Value = 5;
Status = "locked";
};
"signon.management.page.breach-alerts.enabled" = {
Value = false;
Status = "locked";
};
}; };
} }