create runit service from systemd
I need a runit service for plex media server(from aur). The contents of systemd service are
[Unit]
Description=Plex Media Server
After=network.target
[Service]
EnvironmentFile=/etc/conf.d/plexmediaserver
ExecStart=/usr/lib/plexmediaserver/Plex\x20Media\x20Server
Type=simple
User=plex
Group=plex
Restart=on-failure
RestartSec=5
StartLimitInterval=60s
StartLimitBurst=3
[Install]
WantedBy=multi-user.targe
How to include the extra info as environmentfile/user/group etc in the runit service