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