diff --git a/modules/home-manager/services/bleachbit.nix b/modules/home-manager/services/bleachbit.nix index e77c3179..82bcb7af 100644 --- a/modules/home-manager/services/bleachbit.nix +++ b/modules/home-manager/services/bleachbit.nix @@ -70,15 +70,6 @@ in default = pkgs.bleachbit; }; - persistent = lib.mkOption { - type = lib.types.bool; - description = - "Whether to enable persistence for the cleanup, allowing it to activate the next time it boots when missed."; - default = true; - defaultText = "true"; - example = false; - }; - cleaners = lib.mkOption { type = with lib.types; listOf str; description = "List of cleaners to be used when cleaning."; @@ -127,7 +118,7 @@ in Timer = { OnCalendar = cfg.startAt; - Persistent = cfg.persistent; + Persistent = true; }; }; }; diff --git a/users/home-manager/foo-dogsquared/default.nix b/users/home-manager/foo-dogsquared/default.nix index a4ab0398..359ffdaa 100644 --- a/users/home-manager/foo-dogsquared/default.nix +++ b/users/home-manager/foo-dogsquared/default.nix @@ -112,7 +112,6 @@ in ]; withChatCleanup = true; withBrowserCleanup = true; - persistent = true; }; systemd.user.sessionVariables = { diff --git a/users/home-manager/plover/default.nix b/users/home-manager/plover/default.nix index 9a195bb4..e7d84995 100644 --- a/users/home-manager/plover/default.nix +++ b/users/home-manager/plover/default.nix @@ -34,7 +34,6 @@ "vim.history" ]; startAt = "daily"; - persistent = true; }; home.stateVersion = "23.05";