2.home-manager/tests/modules/services/home-manager-auto-expire/basic-configuration.nix
Thiago Kenji Okada 28242a60d3 home-manager-auto-expire: init
This commit introduces a new service that expires old Home-Manager
generations.
2025-04-01 20:14:26 -05:00

18 lines
437 B
Nix

{
config = {
services.home-manager.autoExpire = {
enable = true;
timestamp = "-7 days";
frequency = "00:00";
cleanup.store = true;
};
nmt.script = ''
serviceFile=home-files/.config/systemd/user/home-manager-auto-expire.service
assertFileExists $serviceFile
timerFile=home-files/.config/systemd/user/home-manager-auto-expire.timer
assertFileExists $timerFile
'';
};
}