Basic hitomezashi pattern

This commit is contained in:
arne 2024-07-18 21:39:48 +02:00
commit b797f66721
12 changed files with 2345 additions and 0 deletions

18
flake.nix Normal file
View file

@ -0,0 +1,18 @@
{
description = "compost.party";
inputs.nixpkgs.url = github:NixOS/nixpkgs;
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
lib = pkgs.lib;
in {
devShell.${system} = pkgs.mkShell rec {
buildInputs = [
pkgs.nodejs-18_x
pkgs.nodePackages.pnpm
];
};
};
}