From 98c63e7498cd91df33ada43edf44ce93d4e98dc9 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Fri, 15 Sep 2023 00:29:45 +0100 Subject: [PATCH] hellonet: don't run ntp it's a bit pointless when there's no connectivity to any ntp server --- examples/hellonet.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/examples/hellonet.nix b/examples/hellonet.nix index b5373d7..33f7d65 100644 --- a/examples/hellonet.nix +++ b/examples/hellonet.nix @@ -7,7 +7,6 @@ in rec { imports = [ ../modules/network ../modules/dnsmasq - ../modules/ntp ../modules/ssh ]; hostname = "hellonet"; @@ -17,11 +16,6 @@ in rec { family = "inet"; address ="10.3.0.1"; prefixLength = 16; }; - services.ntp = svc.ntp.build { - pools = { "pool.ntp.org" = ["iburst"]; }; - makestep = { threshold = 1.0; limit = 3; }; - }; - services.sshd = svc.ssh.build { }; users.root = {