mirror of
https://github.com/larstvei/nix-config.git
synced 2025-08-30 12:50:12 +00:00
28 lines
666 B
Nix
28 lines
666 B
Nix
{ zen-browser, ... }:
|
|
{
|
|
imports = [
|
|
zen-browser.homeModules.beta
|
|
./hyprland
|
|
];
|
|
|
|
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/
|
|
};
|
|
};
|
|
}
|