At risk of being excommunicated for heresy of not using fstab, I’m using systemd unit files on vero to mount shares on a Pi: [How to] Use systemd to mount remote shares
For nfs, I just use this:
[Unit]
Description=Mount nfs shared folder
Wants=connman.service
After=connman.service
After=network-online.target wpa_supplicant.service
Wants=network-online.target wpa_supplicant.service
[Mount]
What=192.168.1.1:/mnt/1Text4
Where=/mnt/1Text4
Type=nfs
Options=noauto,rw
[Install]