mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
services/bleachbit: remove persistent option
This commit is contained in:
parent
b916de5ded
commit
4490214c61
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -112,7 +112,6 @@ in
|
||||
];
|
||||
withChatCleanup = true;
|
||||
withBrowserCleanup = true;
|
||||
persistent = true;
|
||||
};
|
||||
|
||||
systemd.user.sessionVariables = {
|
||||
|
@ -34,7 +34,6 @@
|
||||
"vim.history"
|
||||
];
|
||||
startAt = "daily";
|
||||
persistent = true;
|
||||
};
|
||||
|
||||
home.stateVersion = "23.05";
|
||||
|
Loading…
Reference in New Issue
Block a user