Merge pull request #132895 from poscat0x04/chrony-dns

nixos/chrony: wait for DNS services to start up before starting
launchpad/nixpkgs/master
Timothy DeHerrera 3 years ago committed by GitHub
commit cc455c004a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      nixos/modules/services/networking/ntp/chrony.nix

@ -148,7 +148,7 @@ in
wantedBy = [ "multi-user.target" ];
wants = [ "time-sync.target" ];
before = [ "time-sync.target" ];
after = [ "network.target" ];
after = [ "network.target" "nss-lookup.target" ];
conflicts = [ "ntpd.service" "systemd-timesyncd.service" ];
path = [ chronyPkg ];

Loading…
Cancel
Save