summaryrefslogtreecommitdiff
path: root/modules/core/networking/default.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-08 02:32:13 -0700
committerFuwn <[email protected]>2024-10-08 02:32:13 -0700
commitb07259ba6746fd29c94d934c0477f414fd94f739 (patch)
tree93feb128edb27de41aed75d357b6e510f1b2ce55 /modules/core/networking/default.nix
parentdozzle: expose to the world (diff)
downloadnixos-config-b07259ba6746fd29c94d934c0477f414fd94f739.tar.xz
nixos-config-b07259ba6746fd29c94d934c0477f414fd94f739.zip
core: use chrony for ntp
Diffstat (limited to 'modules/core/networking/default.nix')
-rw-r--r--modules/core/networking/default.nix8
1 files changed, 1 insertions, 7 deletions
diff --git a/modules/core/networking/default.nix b/modules/core/networking/default.nix
index b8f221d..83d21c7 100644
--- a/modules/core/networking/default.nix
+++ b/modules/core/networking/default.nix
@@ -2,6 +2,7 @@
{
imports = [
./firewall
+ ./ntp.nix
./pki.nix
./resolved.nix
./tailscale.nix
@@ -16,12 +17,5 @@
"45.90.30.0#${secrets.nextdns_id}.dns.nextdns.io"
"2a07:a8c1::#${secrets.nextdns_id}.dns.nextdns.io"
];
-
- timeServers = [
- "0.nixos.pool.ntp.org"
- "1.nixos.pool.ntp.org"
- "2.nixos.pool.ntp.org"
- "3.nixos.pool.ntp.org"
- ];
};
}