This commit is contained in:
2025-07-28 17:40:07 +04:00
commit d8b226dac2
2 changed files with 151 additions and 0 deletions

11
flake.nix Normal file
View File

@@ -0,0 +1,11 @@
{
outputs =
{ self }:
{
overlays.default = (
final: prev: {
fetchYarnDepsV2 = final.callPackage ./yarn.nix { };
}
);
};
}