From 4a90c198924528cca7674bdc0a37e2bf7d7166f4 Mon Sep 17 00:00:00 2001 From: nikstur Date: Wed, 23 Nov 2022 00:26:00 +0100 Subject: [PATCH] flake.nix: automagically use deps in shell with inputsFrom --- flake.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 4e79ddd..4e6853b 100644 --- a/flake.nix +++ b/flake.nix @@ -91,13 +91,17 @@ }; devShells.x86_64-linux.default = pkgs.mkShell { - nativeBuildInputs = [ + packages = [ qemuUefi uefi-run - rust-nightly lanzatool pkgs.openssl ]; + + inputsFrom = [ + lanzatool + lanzaboote + ]; }; }; }