mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 19:12:11 +02:00
27 lines
688 B
Nix
27 lines
688 B
Nix
# Zen is a minimalistic web browser.
|
|
{inputs, ...}: {
|
|
imports = [
|
|
inputs.zen-browser.homeModules.beta
|
|
];
|
|
|
|
programs.zen-browser = {
|
|
enable = true;
|
|
policies = {
|
|
DisableAppUpdate = true;
|
|
DisableTelemetry = true;
|
|
|
|
AutofillAddressesEnabled = false;
|
|
AutoFillCreditCardEnabled = false;
|
|
DisablePocket = true;
|
|
DisableProfileImport = true;
|
|
DisableSetDesktopBackground = true;
|
|
DontCheckDefaultBrowser = true;
|
|
HomepageURL = "https://start.hadi.diy";
|
|
StartPage = "homepage";
|
|
NewTabPage = true;
|
|
OfferToSaveLogins = false;
|
|
# find more options here: https://mozilla.github.io/policy-templates/
|
|
};
|
|
};
|
|
}
|