diff --git a/src/snek/service/user.py b/src/snek/service/user.py
index 6055403..70e8adf 100644
--- a/src/snek/service/user.py
+++ b/src/snek/service/user.py
@@ -40,7 +40,7 @@ class UserService(BaseService):
         return model
 
     async def get_home_folder(self, user_uid):
-        folder = pathlib.Path(f"./drive/{user_uid}")
+        folder = pathlib.Path(f"./home/{user_uid}")
         if not folder.exists():
             folder.mkdir(parents=True, exist_ok=True)
         return folder