There is no 64-bit absolute jump.
This is not a NASM issue.
This is an instruction set issue.
Absolute jumps use EB, E9, or EA. There is no 64-bit form of these instructions.
Indirect jumps use FF /4 or FF /5. There are 64-bit forms of these instructions. The instruction obtains the 64-bit form, near or m64 for FF/4, far or m16:m64 for FF/5, from memory using a (32-bit) offset encoded as part of the instruction.
I.e., to do a jump to 0x1234567890abcdef, you'd need to use one of the indirect jump forms to effect a 64-bit absolute jump. E.g., (untested) you'd need to do something similar to this:
jmp qword near [my_far_jmp]
my_far_jmp:
dq 0x1234567890abcdef
Rod Pemberton