Warning: Manual .wsl imports may land you in a root shell without the user creation prompts. If this happens, create a default user by adding the following to /etc/wsl.conf inside the distro, then restart it with wsl --shutdown:
[user]
default=devuser
You will also need to create the user manually: adduser devuser && usermod -aG sudo devuser. The wsl --install -d method above is strongly preferred as it handles this automatically.