From a8783b47097dd64ccf7767d8f61f051868af5420 Mon Sep 17 00:00:00 2001 From: Chris Kruining Date: Sun, 3 Aug 2025 23:02:21 +0200 Subject: [PATCH] add some options --- modules/home/application/zen/default.nix | 21 +++++++++++++++++++++ modules/home/desktop/plasma/default.nix | 5 +++++ 2 files changed, 26 insertions(+) diff --git a/modules/home/application/zen/default.nix b/modules/home/application/zen/default.nix index 4723cc3..ad4cb92 100644 --- a/modules/home/application/zen/default.nix +++ b/modules/home/application/zen/default.nix @@ -15,5 +15,26 @@ in home.sessionVariables = { MOZ_ENABLE_WAYLAND = "1"; }; + + programs.zen-browser = { + policies = { + AutofillAddressEnabled = true; + AutofillCreditCardEnabled = false; + DisableAppUpdate = true; + DisableFeedbackCommands = true; + DisableFirefoxStudies = true; + DisablePocket = true; + DisableTelemetry = true; + # DontCheckDefaultBrowser = false; + NoDefaultBookmarks = true; + # OfferToSaveLogins = false; + EnableTrackingProtection = { + Value = true; + Locked = true; + Cryptomining = true; + Fingerprinting = true; + }; + }; + }; }; } diff --git a/modules/home/desktop/plasma/default.nix b/modules/home/desktop/plasma/default.nix index 8614a97..13476fb 100644 --- a/modules/home/desktop/plasma/default.nix +++ b/modules/home/desktop/plasma/default.nix @@ -20,6 +20,11 @@ in panels = import ./panels.nix; powerdevil = import ./power.nix; + kwin = { + edgeBarrier = 0; + cornerBarrier = false; + }; + session = { general.askForConfirmationOnLogout = false; sessionRestore.restoreOpenApplicationsOnLogin = "onLastLogout";