From 9d6abce8ccda8bf5226b9470cb5fe978b0cb30f7 Mon Sep 17 00:00:00 2001 From: John Ogle Date: Mon, 18 Aug 2025 19:19:34 -0700 Subject: [PATCH] [zix790prors] Fix clock timezone thing --- machines/zix790prors/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/machines/zix790prors/configuration.nix b/machines/zix790prors/configuration.nix index 762c3fb..3bf807e 100644 --- a/machines/zix790prors/configuration.nix +++ b/machines/zix790prors/configuration.nix @@ -35,6 +35,9 @@ with lib; # Enable networking networking.networkmanager.enable = true; + # Fix dual boot clock sync - tell Linux to use local time for hardware clock + time.hardwareClockInLocalTime = true; + # NVIDIA Graphics configuration services.xserver.videoDrivers = [ "nvidia" ]; hardware.graphics.enable = true;