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";