From 337c1ca8ae3995b6e7886236e5c6ff6aa270ab98 Mon Sep 17 00:00:00 2001 From: Gerg-L Date: Mon, 8 Jul 2024 17:26:50 -0400 Subject: [PATCH] mkShell nativeBuildInputs -> packages --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index cd75b79d..a10cd43d 100644 --- a/flake.nix +++ b/flake.nix @@ -61,9 +61,9 @@ formatter = pkgs.alejandra; devShells = { default = self'.devShells.lsp; - nvim-nix = pkgs.mkShell {nativeBuildInputs = [config.packages.nix];}; + nvim-nix = pkgs.mkShell {packages = [config.packages.nix];}; lsp = pkgs.mkShell { - nativeBuildInputs = with pkgs; [nil statix deadnix alejandra]; + packages = with pkgs; [nil statix deadnix alejandra]; }; }; };