From c37611f3e5a35ecfa349362d432708176e1c6fb5 Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 28 Nov 2014 19:37:03 +0100 Subject: [PATCH] nixos: Use vendor zones instead of N.pool.ntp.org. Closes #4824, thanks to @abh for processing my stupidity. Signed-off-by: aszlig --- nixos/modules/services/networking/chrony.nix | 7 ++++--- nixos/modules/services/networking/ntpd.nix | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/nixos/modules/services/networking/chrony.nix b/nixos/modules/services/networking/chrony.nix index d1684dd9f05..58b30269ca7 100644 --- a/nixos/modules/services/networking/chrony.nix +++ b/nixos/modules/services/networking/chrony.nix @@ -48,9 +48,10 @@ in servers = mkOption { default = [ - "0.pool.ntp.org" - "1.pool.ntp.org" - "2.pool.ntp.org" + "0.nixos.pool.ntp.org" + "1.nixos.pool.ntp.org" + "2.nixos.pool.ntp.org" + "3.nixos.pool.ntp.org" ]; description = '' The set of NTP servers from which to synchronise. diff --git a/nixos/modules/services/networking/ntpd.nix b/nixos/modules/services/networking/ntpd.nix index 2f638904406..527882aad28 100644 --- a/nixos/modules/services/networking/ntpd.nix +++ b/nixos/modules/services/networking/ntpd.nix @@ -45,9 +45,10 @@ in servers = mkOption { default = [ - "0.pool.ntp.org" - "1.pool.ntp.org" - "2.pool.ntp.org" + "0.nixos.pool.ntp.org" + "1.nixos.pool.ntp.org" + "2.nixos.pool.ntp.org" + "3.nixos.pool.ntp.org" ]; description = '' The set of NTP servers from which to synchronise.