var ok = "id1";
$(".nm-one").append('<input type="text" title="название услуги" class="info-cnt-text-2" id="header" value="ok" />');
var ok = "id1";
$(".nm-one").append('<input type="text" title="название услуги" class="info-cnt-text-2" id="' + ok +'" value="ok" />');
// или
$(".nm-one").append(`<input type="text" title="название услуги" class="info-cnt-text-2" id="${ok}" value="ok" />`);