From c265181102cf03ef52b875483fd89d4d9c5a7d33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 4 Jul 2025 11:54:42 +0200 Subject: [PATCH] nixos/hydra: replace nettools with hostname-debian Motivated by https://github.com/NixOS/hydra/pull/1493 --- .../services/continuous-integration/hydra/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nixos/modules/services/continuous-integration/hydra/default.nix b/nixos/modules/services/continuous-integration/hydra/default.nix index 817adfb2112e..8195d940f2fe 100644 --- a/nixos/modules/services/continuous-integration/hydra/default.nix +++ b/nixos/modules/services/continuous-integration/hydra/default.nix @@ -423,11 +423,11 @@ in "network.target" ]; path = [ - hydra-package - pkgs.net-tools - pkgs.openssh - pkgs.bzip2 config.nix.package + hydra-package + pkgs.bzip2 + pkgs.hostname-debian + pkgs.openssh ]; restartTriggers = [ hydraConf ]; environment = env // { @@ -458,8 +458,8 @@ in "network-online.target" ]; path = with pkgs; [ + hostname-debian hydra-package - net-tools jq ]; restartTriggers = [ hydraConf ];