feat: Added zen browser

Also disable seafile (very slow and can't upload any files from ios / ipados)
This commit is contained in:
uttarayan21
2025-06-24 19:47:10 +05:30
parent 80d53cc79e
commit c2de2f3416
5 changed files with 84 additions and 4 deletions

31
home/apps/zen.nix Normal file
View File

@@ -0,0 +1,31 @@
{
pkgs,
inputs,
...
}: {
imports = [
inputs.zen-browser.homeModules.beta
];
programs.zen-browser = {
enable = true;
profiles.default = {
extensions.packages = with pkgs.nur.repos.rycee.firefox-addons; [
privacy-badger
violentmonkey
tridactyl
clearurls
onepassword-password-manager
ublock-origin
i-dont-care-about-cookies
keepa
sponsorblock
];
};
policies = {
DisablePocket = true;
DisableTelemetry = true;
FeatureRecommendations = false;
SkipOnboarding = true;
};
};
}