2.home-manager/tests/modules/services/home-manager-auto-expire/linux/basic-configuration.nix
Austin Horstman 5618e7a748 tests/home-manager-auto-expire: reorganize darwin and linux
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-06-22 23:58:37 -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
'';
};
}