diff --git a/templates/basicShell/flake.nix b/templates/basicShell/flake.nix index 19f1672..0ca43fb 100644 --- a/templates/basicShell/flake.nix +++ b/templates/basicShell/flake.nix @@ -11,14 +11,13 @@ inherit system; config.allowUnfree = true; }; - lib = pkgs.lib; - shellWithPkgs = buildInputs: pkgs.mkShell { - inherit buildInputs; + shellWithPkgs = packages: pkgs.mkShell { + inherit packages; }; in { - devShells.default = shellWithPkgs (lib.singleton pkgs.codeql); + devShells.default = shellWithPkgs [ pkgs.hello ]; }); }