Auto start Home Assistant

I have setup a debian base image and installed home assistant following the Installation in Virtualenv instructions.
im having a hard time to get it to start in auto.
Tried the Autostart Using Systemd. Just not working.
Has anyone got a idea what I did wrong?

The command to start a service at boot is

sudo systemctl enable <service>

This is what I get when checking:

debian@pine64:~$ sudo systemctl enable home-assistant
debian@pine64:~$ sudo systemctl start home-assistant
debian@pine64:~$ sudo systemctl status home-assistant
● home-assistant.service - Home Assistant
Loaded: loaded (/etc/systemd/system/home-assistant.service; enabled)
Active: failed (Result: exit-code) since Tue 2017-01-17 17:58:36 EST; 17s ago
Process: 3357 ExecStart=/srv/bin/hass -c /home/homeassistant/.homeassistant (code=exited, status=203/EXEC)
Main PID: 3357 (code=exited, status=203/EXEC)

Jan 17 17:58:36 pine64 systemd[1]: Started Home Assistant.
Jan 17 17:58:36 pine64 systemd[3357]: Failed at step EXEC spawning /srv/bin/hass: No such file or directory
Jan 17 17:58:36 pine64 systemd[1]: home-assistant.service: main process exited, code=exited, status=203/EXEC
Jan 17 17:58:36 pine64 systemd[1]: Unit home-assistant.service entered failed state.

Ah i got it. Just had the ExecStart path pointing to the wrong place.