mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
22 lines
399 B
Nix
22 lines
399 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
|
||
|
'';
|
||
|
}
|