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 }:
|
outputs = { self, nixpkgs }:
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
in {
|
in {
|
||||||
devShells."${system}".default = let
|
devShells."${system}".default = pkgs.mkShell {
|
||||||
pkgs = import nixpkgs { inherit system; };
|
|
||||||
in pkgs.mkShell {
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
nodejs_25
|
nodejs_25
|
||||||
cypress
|
cypress
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue