PopOS 20.10 Guest OS support?

Thanks for that, @fhemberger … Indeed it does. For posterity, the correct Pop!_OS Vagrant file for a 20.10 box that I have is:

Vagrant.configure("2") do |config|
    config.vm.box = "ahplummer/PopOS_20.10"
    config.vm.box_version = "1"
    config.vm.guest = "ubuntu"
end

Specifying the “ubuntu” is needed here, until PopOS has a bonafide Vagrant plugin for guest OS autodetection.

Thanks!