mirror of
https://github.com/nix-community/home-manager
synced 2024-12-18 17:14:52 +00:00
db40fead89
This will match the behavior in the upstream service which allows the user to set options to something that uses shell syntax.
29 lines
621 B
Nix
29 lines
621 B
Nix
{ ... }:
|
|
|
|
{
|
|
nix.gc = {
|
|
automatic = true;
|
|
frequency = "monthly";
|
|
options = "--delete-older-than 30d --max-freed $((64 * 1024**3))";
|
|
};
|
|
|
|
test.stubs.nix = { name = "nix"; };
|
|
|
|
nmt.script = ''
|
|
serviceFile=home-files/.config/systemd/user/nix-gc.service
|
|
|
|
assertFileExists $serviceFile
|
|
|
|
serviceFile=$(normalizeStorePaths $serviceFile)
|
|
|
|
assertFileContent $serviceFile ${./expected.service}
|
|
|
|
timerFile=home-files/.config/systemd/user/nix-gc.timer
|
|
|
|
assertFileExists $timerFile
|
|
|
|
timerFile=$(normalizeStorePaths $timerFile)
|
|
|
|
assertFileContent $timerFile ${./expected.timer}
|
|
'';
|
|
}
|