services/bleachbit: remove persistent option

This commit is contained in:
Gabriel Arazas 2023-11-04 23:20:55 +08:00
parent b916de5ded
commit 4490214c61
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
3 changed files with 1 additions and 12 deletions

View File

@ -70,15 +70,6 @@ in
default = pkgs.bleachbit; 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 { cleaners = lib.mkOption {
type = with lib.types; listOf str; type = with lib.types; listOf str;
description = "List of cleaners to be used when cleaning."; description = "List of cleaners to be used when cleaning.";
@ -127,7 +118,7 @@ in
Timer = { Timer = {
OnCalendar = cfg.startAt; OnCalendar = cfg.startAt;
Persistent = cfg.persistent; Persistent = true;
}; };
}; };
}; };

View File

@ -112,7 +112,6 @@ in
]; ];
withChatCleanup = true; withChatCleanup = true;
withBrowserCleanup = true; withBrowserCleanup = true;
persistent = true;
}; };
systemd.user.sessionVariables = { systemd.user.sessionVariables = {

View File

@ -34,7 +34,6 @@
"vim.history" "vim.history"
]; ];
startAt = "daily"; startAt = "daily";
persistent = true;
}; };
home.stateVersion = "23.05"; home.stateVersion = "23.05";