summaryrefslogtreecommitdiff
path: root/gnu/services/networking.scm
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2017-07-29 20:43:40 -0400
committerLeo Famulari <leo@famulari.name>2017-07-30 20:21:36 -0400
commit57f57a7bbfe1dbb2092ea082f575706fed03a42f (patch)
treea961c0b5ac589713f2c0712bb98c47ed9231e29b /gnu/services/networking.scm
parent706448b193406fcc50535d722196ee9bb0d99934 (diff)
downloadguix-patches-57f57a7bbfe1dbb2092ea082f575706fed03a42f.tar
guix-patches-57f57a7bbfe1dbb2092ea082f575706fed03a42f.tar.gz
services: ntp: Use the NTP pool via the 'guix' zone.
* gnu/services/networking.scm (%ntp-servers): Use *.guix.pool.ntp.org.
Diffstat (limited to 'gnu/services/networking.scm')
-rw-r--r--gnu/services/networking.scm11
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm
index c381581896..b45008de64 100644
--- a/gnu/services/networking.scm
+++ b/gnu/services/networking.scm
@@ -334,10 +334,13 @@ Protocol (DHCP) client, on all the non-loopback network interfaces."
(service dhcp-client-service-type dhcp))
(define %ntp-servers
- ;; Default set of NTP servers.
- '("0.pool.ntp.org"
- "1.pool.ntp.org"
- "2.pool.ntp.org"))
+ ;; Default set of NTP servers. These URLs are managed by the NTP Pool project.
+ ;; Within Guix, Leo Famulari <leo@famulari.name> is the administrative contact
+ ;; for this NTP pool "zone".
+ '("0.guix.pool.ntp.org"
+ "1.guix.pool.ntp.org"
+ "2.guix.pool.ntp.org"
+ "3.guix.pool.ntp.org"))
;;;