From 22d8749f7ae707bdd89fb70b1d2ba27eda8d2e0a Mon Sep 17 00:00:00 2001 From: Gonne Kretschmer Date: Mon, 6 Nov 2023 16:03:35 +0100 Subject: [PATCH] Fix clock drift --- nixos/roles/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/roles/default.nix b/nixos/roles/default.nix index b536d28..d92b970 100644 --- a/nixos/roles/default.nix +++ b/nixos/roles/default.nix @@ -56,5 +56,7 @@ services = { PasswordAuthentication = false; }; }; +#Prevent clock drift due to interaction problem with xen hardware clock + timesyncd.enable = lib.mkForce true; }; }