C5SCZS522SD3HWSXP4BWDE244VVJHI5EG7N52LXQ5SLGOFWSZDVAC
};
# Periodically compress build logs. The queue runner compresses
# logs automatically after a step finishes, but this doesn't work
# if the queue runner is stopped prematurely.
systemd.services.hydra-compress-logs =
{ path = [ pkgs.bzip2 ];
script =
''
find /var/lib/hydra/build-logs -type f -name "*.drv" -mtime +3 -size +0c | xargs -r bzip2 -v
'';
startAt = "Sun 01:45";