Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
{ pkgs, ... }:
{
services.cron = {
enable = true;
systemCronJobs = [
"*/5 * * * * b12f ${pkgs.check-battery}/bin/check-battery"
];
};
}