From 1fb24a7dc1cd1045fcc5be618f00dfedffa994a6 Mon Sep 17 00:00:00 2001 From: Mat Jones Date: Tue, 5 Mar 2024 09:36:47 -0500 Subject: [PATCH] chore(nix): Update flake.nix to remove deprecated property --- flake.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 6dbf70e..ec84af2 100644 --- a/flake.nix +++ b/flake.nix @@ -5,10 +5,9 @@ }; outputs = { nixpkgs, flake-utils, ... }: flake-utils.lib.eachDefaultSystem (system: - let - pkgs = import nixpkgs { inherit system; }; + let pkgs = import nixpkgs { inherit system; }; in { - devShell = pkgs.mkShell { + devShells.default = pkgs.mkShell { name = "shell with stylua and luacheck"; packages = with pkgs; [ stylua luajitPackages.luacheck ];