From ac406a9175dddc59f7d4c986a5147203f0714d8b Mon Sep 17 00:00:00 2001 From: "Janik H." Date: Fri, 19 Jul 2024 09:13:32 +0200 Subject: [PATCH] nixos-modules: hydra-queue-runner fix network-online.target eval warning --- nixos-modules/hydra.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos-modules/hydra.nix b/nixos-modules/hydra.nix index 55e86310..ca0bc26d 100644 --- a/nixos-modules/hydra.nix +++ b/nixos-modules/hydra.nix @@ -339,6 +339,7 @@ in systemd.services.hydra-queue-runner = { wantedBy = [ "multi-user.target" ]; requires = [ "hydra-init.service" ]; + wants = [ "network-online.target" ]; after = [ "hydra-init.service" "network.target" "network-online.target" ]; path = [ cfg.package pkgs.nettools pkgs.openssh pkgs.bzip2 config.nix.package ]; restartTriggers = [ hydraConf ];