From ed8509ce9d7067219df255f909ea055026f801b9 Mon Sep 17 00:00:00 2001 From: Julian Stecklina Date: Tue, 22 Nov 2022 00:45:18 +0100 Subject: [PATCH] Remove useless rec --- flake.nix | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/flake.nix b/flake.nix index 3821fb7..3997fdf 100644 --- a/flake.nix +++ b/flake.nix @@ -80,19 +80,18 @@ mkdir -p $out/bin add-sections ${lanzaboote}/bin/lanzaboote.efi ${osrel} ${cmdline} $out/bin/lanzaboote.efi ''; - in - rec { - packages.x86_64-linux = { - inherit qemuUefi uefi-run lanzaboote lanzaboote-uki; - default = lanzaboote-uki; - }; - - devShells.x86_64-linux.default = pkgs.mkShell { - nativeBuildInputs = [ - qemuUefi - uefi-run - rust-nightly - ]; - }; + in { + packages.x86_64-linux = { + inherit qemuUefi uefi-run lanzaboote lanzaboote-uki; + default = lanzaboote-uki; }; + + devShells.x86_64-linux.default = pkgs.mkShell { + nativeBuildInputs = [ + qemuUefi + uefi-run + rust-nightly + ]; + }; + }; }