AFAIK, from a security perspective, 802.1X using computer authentication is generally more secure for controlling network access, while user authentication provides stronger identity-based access control. Which is "more secure" depends on what you are trying to protect.
Computer authentication uses the device's machine certificate or computer account before a user signs in. This ensures that only trusted, domain-managed devices can connect to the network, preventing unmanaged or rogue devices from gaining access simply because someone knows valid user credentials. It also allows computers to receive Group Policy, software updates, and other management services before a user logs on.
User authentication occurs after the user signs in and verifies the user's identity, typically with Active Directory credentials or a user certificate. This enables per-user authorization, auditing, and network policies. However, if only user authentication is used, a user may be able to authenticate from an unmanaged or unauthorized device if the network does not also validate the device.
For the strongest security, you'd want to implement both computer and user authentication (machine authentication followed by user authentication). This provides device trust and user identity verification, allowing network policies to consider both the user and the device.
For a shared endpoint (such as a kiosk, nursing station, manufacturing workstation, or shared office PC), computer authentication is typically the better choice because network access remains tied to the trusted managed device regardless of which authorized user signs in. If different users require different network permissions or auditing, combining computer authentication with user authentication is recommended. This allows the endpoint to be trusted while still enforcing user-specific authorization and logging.
If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.
hth
Marcin