2.home-manager/tests/modules/services/nix-gc/darwin/basic.nix
Austin Horstman 41a5f0a98a tests/nix-gc: reorganize darwin and linux
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-06-22 23:58:37 -05:00

15 lines
303 B
Nix

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