Rules running at Universal Time instead of Local time

Running an RPi5 with OH 5.2 SNAPSHOT - Build 5173.

I have several rules that run based on ‘time of day’ that appear to now run at the Universal time instead of my local time like they did on my previous Pi R4 running OH4.

Is there a way to dictate rules to use ‘local’ time, or do I need to adjust all of the rules to just run at “Universal” time?

For example:

rule "All Lights Off at Eleven"
when 
	Time cron "0 0 23 1/1 * ? *"
then

	FrontYard_Switch.sendCommand(OFF)
	PoolCage_Switch.sendCommand(OFF)
end

This may help

Thank you!

For others (assuming Eastern Time)

sudo nano /etc/default/openhab

Look for -Duser.timezone and update to below

-Duser.timezone=America/New_York

save file and reboot