diff --git a/hosts/common/programs/objdump.nix b/hosts/common/programs/objdump.nix index dc8a22e06..759457db5 100644 --- a/hosts/common/programs/objdump.nix +++ b/hosts/common/programs/objdump.nix @@ -4,5 +4,7 @@ # binutils-unwrapped is like 80 MiB, just for this one binary; # dynamic linking means copying the binary doesn't reduce the closure much at all compared to just symlinking it. packageUnwrapped = pkgs.linkIntoOwnPackage pkgs.binutils-unwrapped "bin/objdump"; + sandbox.method = "bwrap"; + sandbox.autodetectCliPaths = "existingFile"; }; }