Merge pull request #239 from naturallaw777/copilot/fix-sovran-hub-service-path

[WIP] Fix sovran-hub service PATH for required binaries
This commit is contained in:
Sovran_Systems
2026-04-14 17:01:45 -05:00
committed by GitHub

View File

@@ -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 = {