nixos/dante: order after network-online.target (#34435)

network-online.target properly depends on the underlying network
management tool (e.g. NixOS static configuration scripts, dhcpcd,
NetworkManager, networkd) signalling that all interfaces are up and
appropriately configured (to whatever degree possible/required), whereas
network.target only indicates that the network management tool itself
has started.

authored by Alexei Robyn and committed by Joachim F ab45e13e e14d24bb

+1 -1
+1 -1
nixos/modules/services/networking/dante.nix
··· 47 47 48 48 systemd.services.dante = { 49 49 description = "Dante SOCKS v4 and v5 compatible proxy server"; 50 - after = [ "network.target" ]; 50 + after = [ "network-online.target" ]; 51 51 wantedBy = [ "multi-user.target" ]; 52 52 53 53 serviceConfig = {