flake.nix: move lanzatool to inputsFrom in devShell

When lanzatool is in the packages attr of the devShell, any compliation
error in lanzatool means direnv cannot load the environment anymore.
Then LSP support in your editor and even cargo in your shell is missing.
This commit is contained in:
nikstur 2022-12-26 16:33:19 +01:00
parent 46df12d579
commit 110f1bb9fd
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,6 @@
devShells.x86_64-linux.default = pkgs.mkShell { devShells.x86_64-linux.default = pkgs.mkShell {
packages = [ packages = [
uefi-run uefi-run
lanzatool
pkgs.openssl pkgs.openssl
(pkgs.sbctl.override { (pkgs.sbctl.override {
databasePath = "pki"; databasePath = "pki";
@ -133,6 +132,7 @@
inputsFrom = [ inputsFrom = [
lanzaboote lanzaboote
lanzatool
]; ];
}; };