nano >= 3.2
This adds support for the Alt+Del keyboard shortcut, which deletes text without Cutting it.
nano >= 5.0
You can delete the selected text by piping it through a command with no output: using Ctrl+T, and running | true (or |: if you really want to cut down on keystrokes)
nano >= 2.9.8
As with nano 5.0, but you need to use Ctrl+R, Ctrl+X instead of Ctrl+T.
Old answer
Sadly, nano doesn't seem to have any way of bulk-deleting without clobbering the clipboard.
The safest thing to do while staying within the document is probably to paste your clipboard before deleting, then re-cut it again afterwards.
If you have a block of text already selected, then Ctrl+U will paste the clipboard text, including it in your selected block. You can then unmark the pasted text and just cut your originally selected block.
These steps don't preserve your clipboard, exactly, but at least effectively perform a swap between your selection and the clipboard, allowing you to re-cut the lines you had in there before.