SQLite is a local database file. Unless it’s read only, two applications can not access the same database file concurrently. If you created the db file it on your laptop, you need to copy it to the desktop. If the desktop changes the file, you would need to copy it back to the laptop to see the changes on the laptop.
if you want the desktop and laptop to share access to a SQLite database, you should create a webapi application that hosts the database on a computer they can both access. Then the laptop and desktop could call the same webapi.