summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2014-11-28 19:37:03 +0100
committeraszlig <aszlig@redmoonstudios.org>2014-11-28 19:37:03 +0100
commitc37611f3e5a35ecfa349362d432708176e1c6fb5 (patch)
treebf8371860f226f57ccd23481de1be6dfdf09207a /nixos
parentf9c96df1d5d8cf6db264c41cb2de227636381203 (diff)
downloadnixlib-c37611f3e5a35ecfa349362d432708176e1c6fb5.tar
nixlib-c37611f3e5a35ecfa349362d432708176e1c6fb5.tar.gz
nixlib-c37611f3e5a35ecfa349362d432708176e1c6fb5.tar.bz2
nixlib-c37611f3e5a35ecfa349362d432708176e1c6fb5.tar.lz
nixlib-c37611f3e5a35ecfa349362d432708176e1c6fb5.tar.xz
nixlib-c37611f3e5a35ecfa349362d432708176e1c6fb5.tar.zst
nixlib-c37611f3e5a35ecfa349362d432708176e1c6fb5.zip
nixos: Use vendor zones instead of N.pool.ntp.org.
Closes #4824, thanks to @abh for processing my stupidity.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/networking/chrony.nix7
-rw-r--r--nixos/modules/services/networking/ntpd.nix7
2 files changed, 8 insertions, 6 deletions
diff --git a/nixos/modules/services/networking/chrony.nix b/nixos/modules/services/networking/chrony.nix
index d1684dd9f05d..58b30269ca7a 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 2f638904406b..527882aad288 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.