From dfdeb84ab8fc6ce1ae0454337dff4f9f95b503ab Mon Sep 17 00:00:00 2001 From: Berwn Date: Sun, 21 Jun 2026 03:07:31 +0700 Subject: [PATCH] Set time.timeZone on mx1 and web01 Both had NTP (timesyncd) enabled but no timezone, unlike control/ns1/ns2. Default to Etc/GMT-3 to match the majority of hosts. --- machines/mx1/configuration.nix | 1 + machines/web01/configuration.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/machines/mx1/configuration.nix b/machines/mx1/configuration.nix index 9fae840..6e6c30c 100644 --- a/machines/mx1/configuration.nix +++ b/machines/mx1/configuration.nix @@ -18,5 +18,6 @@ in address = hosts.${config.networking.hostName}.ipv6; }; + time.timeZone = "Etc/GMT-3"; # UTC+3 (fixed offset, no DST) services.timesyncd.enable = true; } diff --git a/machines/web01/configuration.nix b/machines/web01/configuration.nix index c00df31..c9dea56 100644 --- a/machines/web01/configuration.nix +++ b/machines/web01/configuration.nix @@ -17,5 +17,6 @@ in address = hosts.${config.networking.hostName}.ipv6; }; + time.timeZone = "Etc/GMT-3"; # UTC+3 (fixed offset, no DST) services.timesyncd.enable = true; }