about summary refs log tree commit diff
path: root/nixos/modules/services/networking/xinetd.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/networking/xinetd.nix')
-rw-r--r--nixos/modules/services/networking/xinetd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/xinetd.nix b/nixos/modules/services/networking/xinetd.nix
index 08680b517808..d27f04a180f3 100644
--- a/nixos/modules/services/networking/xinetd.nix
+++ b/nixos/modules/services/networking/xinetd.nix
@@ -141,7 +141,7 @@ in
   config = mkIf cfg.enable {
     systemd.services.xinetd = {
       description = "xinetd server";
-      after = [ "network-interfaces.target" ];
+      after = [ "network.target" ];
       wantedBy = [ "multi-user.target" ];
       path = [ pkgs.xinetd ];
       script = "xinetd -syslog daemon -dontfork -stayalive -f ${configFile}";