Try this...

variable jobno number;
begin
dbms_job.submit(:jobno,'trunc_table;','NEXT_DAY(TRUNC(SYSDATE), ''MONDAY'') + 6/24');
COMMIT;
END;
/