Skip to content

Commit

Permalink
Merge pull request #132895 from poscat0x04/chrony-dns
Browse files Browse the repository at this point in the history
nixos/chrony: wait for DNS services to start up before starting
  • Loading branch information
Timothy DeHerrera authored Aug 6, 2021
2 parents 224e83c + 6e3cecf commit cc455c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/networking/ntp/chrony.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 ];
Expand Down

0 comments on commit cc455c0

Please sign in to comment.