nixos-config/tests/modules/home-manager/services/bleachbit/basic-setup.nix

18 lines
377 B
Nix
Raw Normal View History

{ lib, ... }:
{
services.bleachbit = {
enable = true;
startAt = "weekly";
2025-01-29 04:48:19 +00:00
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
'';
}