fix(flakes): add Yarn

This commit is contained in:
Harsh Shandilya 2023-02-09 10:19:58 +00:00
parent 3ecf12c7dc
commit f3486c6e83
1 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@
pkgs = import nixpkgs {inherit system;};
in {
devShells.default =
pkgs.mkShell {nativeBuildInputs = with pkgs; [nodejs-16_x];};
pkgs.mkShell {nativeBuildInputs = with pkgs; [nodejs-16_x yarn];};
});
}