I'm not aware of any native possibility to preset the collation of a new database. You can opt to uitlize the Manual code file for that. In there you can verify the collation and alter it when it doesn't match the collation you want the database to be.
Dynamic SQL example; replace [COLLATION] with the desired collation:
if (select collation_name
from sys.databases
where name = db_name()) <> '[COLLATION]'
begin
declare @alter_database_collation nvarchar(max) =
'ALTER DATABASE ' + quotename(db_name()) + ' COLLATE [COLLATION]';
exec sp_executesql @alter_database_collation;
print 'Database collation has been changed to [COLLATION]';
end
go