Skip to content

Instantly share code, notes, and snippets.

@infinisil
Last active July 21, 2018 15:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save infinisil/e8c341eaf81e84df113265247164cc53 to your computer and use it in GitHub Desktop.
Save infinisil/e8c341eaf81e84df113265247164cc53 to your computer and use it in GitHub Desktop.
{
systemd = {
timers.foo = {
wantedBy = [ "timers.target" ];
partOf = [ "foo.service" ];
timerConfig.OnCalendar = "minutely";
};
services.foo = {
serviceConfig.Type = "oneshot";
script = ''
echo hi
'';
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment