fix: update ntp time servers

This commit is contained in:
Ryan Yin
2024-08-12 03:23:34 +08:00
parent 9535c09a33
commit cae48ede1b

View File

@@ -1,4 +1,4 @@
_: {
{
# Network discovery, mDNS
# With this enabled, you can access your machine at <hostname>.local
# it's more convenient than using the IP address.
@@ -12,4 +12,10 @@ _: {
userServices = true;
};
};
# Use an NTP server located in the mainland of China to synchronize the system time
networking.timeServers = [
"ntp.aliyun.com" # Aliyun NTP Server
"ntp.tencent.com" # Tencent NTP Server
];
}