declare pkgs according to different convention
This commit is contained in:
parent
c2a1d5595e
commit
5d2b847a54
1 changed files with 2 additions and 3 deletions
|
|
@ -6,10 +6,9 @@
|
|||
outputs = { self, nixpkgs }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in {
|
||||
devShells."${system}".default = let
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
in pkgs.mkShell {
|
||||
devShells."${system}".default = pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
nodejs_25
|
||||
cypress
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue