From 019b4effa9bbc2cc73cb8ba8ecde0e2a19e353aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 20 Jul 2023 12:22:13 +0200 Subject: [PATCH] nix-unstable-static: add a PATH entry that can be used to bind mount more binaries into the system --- images/nix-unstable-static/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/images/nix-unstable-static/default.nix b/images/nix-unstable-static/default.nix index 1f7f6ba..f9661d8 100644 --- a/images/nix-unstable-static/default.nix +++ b/images/nix-unstable-static/default.nix @@ -121,7 +121,8 @@ let Env = [ "NIX_BUILD_SHELL=/bin/bash" "PAGER=cat" - "PATH=/bin" + # /host/bin can be used to extend the image with additional binaries + "PATH=/bin:/host/bin" "SSL_CERT_FILE=/etc/ssl/certs/ca-bundle.crt" ]; };