If you just want a cron job that runs once a year by default, you can use hook_yearly().

Example

// Easy-hook, uses rule: 0 0 1 1 *
function mymodule_yearly() {
  // Do some stuff
}
P.S.: It's okay to laugh. The use case for this hook is very likely non-existent.