I recommend defining your own function in your init.el
(defun kill-to-end-of-buffer ()
"Kill text from point to the end of the buffer."
(interactive)
(kill-region (point) (point-max)))
then binding it to a key:
(global-set-key (kbd "C-s-k") 'kill-to-end-of-buffer)