By default, the primary key is a clustered index.
So, two ways.
1. Modify the statement in which you created the index and delete the aggregated keyword. This creates a nonclustered index by default.
2. Delete the primary key and regenerate it. When creating a primary key, add the keyword "nonclustered". Then you can create a clustered index.