From 9996a93e294ad575172fb88c841c3d6018b9c5b2 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Sat, 10 Jun 2023 12:15:17 +0200 Subject: [PATCH] fix(nix): install pnpm Signed-off-by: Sefa Eyeoglu --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e935f96..ca305d3 100644 --- a/flake.nix +++ b/flake.nix @@ -32,7 +32,7 @@ }; devShells.default = pkgs.mkShell { inherit (self.checks.${system}.pre-commit-check) shellHook; - packages = with pkgs; [yarn]; + packages = with pkgs; [nodePackages.pnpm]; }; }); }