Same problem here. I didn't try the restore from cloud option, because I wanted the tablet to stay offline for the moment. Luckily I know a few Android internals that help to get around this issue with the Setup Wizard. The wizard sets some flags, which you can do manually. After the Nook has booted and shows the Setup Wizard, simply connect it to your PC via USB, and start an ADB shell on the PC (luckily, USB debugging appears to be enabled by default, otherwise ADB wouldn't work).
Then, in the ADB shell, enter these commands:
Code:
settings put global device_provisioned 1
settings put secure user_setup_complete 1
settings --cm put secure cm_setup_wizard_completed 1
The last one obviously is a CM/LineageOS-specific setting, not sure if it's needed. Anyway, after entering this, the Setup Wizard will think it has run already, and can be bypassed by crashing it or rebooting.
Hope that helps some people.