A unidade systemd sshd padrão do Debian 8 está em /lib/systemd/system/ssh.service
e é bem simples. Tudo o que você precisa fazer é algo como cp /lib/systemd/system/ssh.service /etc/systemd/system/ssh_sftp.service
e, em seguida, edite seu arquivo para algo assim.
[Unit]
Description=OpenBSD Secure Shell server
After=network.target auditd.service
ConditionPathExists=!/etc/ssh/sshd_not_to_be_run
[Service]
EnvironmentFile=-/etc/default/ssh
ExecStart=/usr/sbin/sshd -D -f /etc/ssh/sshd_sftp_config $SSHD_OPTS
ExecReload=/bin/kill -HUP $MAINPID
KillMode=process
Restart=on-failure
[Install]
WantedBy=multi-user.target
Alias=ssh_sftp_d.service
Depois de criar esse arquivo, ative e inicie-o. systemctl enable ssh_sftp.service
e systemctl start ssh_sftp.service
.
Como @Michael Hampton sugeriu, basicamente o mesmo conjunto de instruções do que foi sugerido para o Redhat.