Services live at /lib/systemd/system

Example .service File

[Unit]
Description=My Service
After=network.target

[Service]
Type=simple
User=rd
WorkingDirectory=/home/rd
ExecStart=/home/nanodano/my_daemon --option=123
Restart=always

[Install]
WantedBy=multi-user.target

source