Systemd unit template 4 lxc containers

Sup guyz! I want to manage my lxc containers with systemd units, so i wrote some template unit for this:

[Unit]
Description=Do you know what Elon Musk named his son? It's %i
#Requires=
[Service]
ExecStart=/usr/bin/lxc-start -F -n %i
ExecStop=/usr/bin/lxc-stop -n %i
TasksMax=infinity
TimeoutStopSec=60s

It works, but maybe you could give me some advice on how to improve it? Thank you very much in advance!