We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9535c09 commit cae48edCopy full SHA for cae48ed
modules/nixos/base/networking.nix
@@ -1,4 +1,4 @@
1
-_: {
+{
2
# Network discovery, mDNS
3
# With this enabled, you can access your machine at <hostname>.local
4
# it's more convenient than using the IP address.
@@ -12,4 +12,10 @@ _: {
12
userServices = true;
13
};
14
15
+
16
+ # Use an NTP server located in the mainland of China to synchronize the system time
17
+ networking.timeServers = [
18
+ "ntp.aliyun.com" # Aliyun NTP Server
19
+ "ntp.tencent.com" # Tencent NTP Server
20
+ ];
21
}
0 commit comments