From 3f3f4118c1ec0f095018f583a32c942616a98a02 Mon Sep 17 00:00:00 2001 From: Berwn Date: Sun, 21 Jun 2026 03:07:57 +0700 Subject: [PATCH] Use Singapore time (UTC+8) for mx1 and web01 Both hosts are in the Singapore region, not UTC+3. --- machines/mx1/configuration.nix | 2 +- machines/web01/configuration.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/machines/mx1/configuration.nix b/machines/mx1/configuration.nix index 6e6c30c..36e71a0 100644 --- a/machines/mx1/configuration.nix +++ b/machines/mx1/configuration.nix @@ -18,6 +18,6 @@ in address = hosts.${config.networking.hostName}.ipv6; }; - time.timeZone = "Etc/GMT-3"; # UTC+3 (fixed offset, no DST) + time.timeZone = "Etc/GMT-8"; # UTC+8 (Singapore, fixed offset, no DST) services.timesyncd.enable = true; } diff --git a/machines/web01/configuration.nix b/machines/web01/configuration.nix index c9dea56..0a8dab3 100644 --- a/machines/web01/configuration.nix +++ b/machines/web01/configuration.nix @@ -17,6 +17,6 @@ in address = hosts.${config.networking.hostName}.ipv6; }; - time.timeZone = "Etc/GMT-3"; # UTC+3 (fixed offset, no DST) + time.timeZone = "Etc/GMT-8"; # UTC+8 (Singapore, fixed offset, no DST) services.timesyncd.enable = true; }