1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-03 07:31:03 +01:00
home-manager/tests/modules/services/nix-gc/darwin/basic.nix
2025-08-21 16:03:33 -05:00

15 lines
299 B
Nix

{
nix.gc = {
automatic = true;
dates = "monthly";
options = "--delete-older-than 30d";
};
nmt.script = ''
serviceFile=LaunchAgents/org.nix-community.home.nix-gc.plist
assertFileExists "$serviceFile"
assertFileContent "$serviceFile" ${./expected-agent.plist}
'';
}