From 7ec47abe1782d2e8aa9ba098dc8184438cdbdc36 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 14 Apr 2026 22:01:21 +0000 Subject: [PATCH] fix(hub): add network utility binaries to sovran-hub-web service PATH Agent-Logs-Url: https://github.com/naturallaw777/staging_alpha/sessions/cc568566-7619-4546-af51-5173b55440a6 Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com> --- modules/core/sovran-hub.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/core/sovran-hub.nix b/modules/core/sovran-hub.nix index acb2cd5..1784ab1 100644 --- a/modules/core/sovran-hub.nix +++ b/modules/core/sovran-hub.nix @@ -350,7 +350,13 @@ in StandardError = "journal"; }; - path = [ pkgs.qrencode ] ++ lib.optional cfg.services.bitcoin config.services.bitcoind.package; + path = [ + pkgs.qrencode + pkgs.iproute2 + pkgs.nftables + pkgs.iptables + pkgs.hostname + ] ++ lib.optional cfg.services.bitcoin config.services.bitcoind.package; }; systemd.services.sovran-hub-update = {