mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-13 18:18:59 +00:00
18 lines
377 B
Nix
18 lines
377 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
services.bleachbit = {
|
|
enable = true;
|
|
startAt = "weekly";
|
|
cleaners =
|
|
[ "firefox.cookies" "firefox.history" "discord.logs" "zoom.logs" ];
|
|
};
|
|
|
|
test.stubs.bleachbit = { };
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/systemd/user/bleachbit.service
|
|
assertFileExists home-files/.config/systemd/user/bleachbit.timer
|
|
'';
|
|
}
|