lol

coturn service: Fix coturn to properly come up (#29415)

properly also in case dhcpcd being used.

Without network-online.target, coturn will fail to listen on addresses that
come up with dhcpcd.

authored by

Robert Klotzner and committed by
Franz Pletz
a9f60224 b1799084

+2 -1
+2 -1
nixos/modules/services/networking/coturn.nix
··· 307 307 308 308 systemd.services.coturn = { 309 309 description = "coturn TURN server"; 310 - after = [ "network.target" ]; 310 + after = [ "network-online.target" ]; 311 + wants = [ "network-online.target" ]; 311 312 wantedBy = [ "multi-user.target" ]; 312 313 313 314 unitConfig = {