chore(nix): removed nodepackages it's now npm alone

This commit is contained in:
Mouadhbendjedidi 2026-04-30 10:49:13 +01:00
parent 8477e4751c
commit dbd714cd5a
No known key found for this signature in database
2 changed files with 28 additions and 1 deletions

27
flake.lock Normal file
View file

@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1777268161,
"narHash": "sha256-bxrdOn8SCOv8tN4JbTF/TXq7kjo9ag4M+C8yzzIRYbE=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "1c3fe55ad329cbcb28471bb30f05c9827f724c76",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View file

@ -14,7 +14,7 @@
devShells.${system}.default = pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
nodePackages.npm
npm
];
};
};