Default datetime to tomorrow

I would like to set a datetime field to default to tomorrows date. This is what im currently trying but its not working

frappe.ui.form.on('Lead', 'contact_date', function(frm) {
frm.set_value("contact_date", frappe.datetime.add_days(frappe.datetime.now_datetime(), 1))});