The timezone is initialized as New York by default for all users.
To fix this, regularly connect to the Postgres database and run the following query:
UPDATE users SET timezone = 'Europe/Bucharest' WHERE timezone IS DISTINCT FROM 'Europe/Bucharest';
Another untested solution from Wiki.js forums would be to seet the default column type.
ALTER TABLE users ALTER COLUMN timezone SET DEFAULT 'Europe/Bucharest';