ncounter.git

git clone https://git.crispbyte.dev/ncounter.git

CheddarCrisp  ·  2024-04-12

shell.nix

1{ pkgs ? import <nixpkgs> {} }:
2  pkgs.mkShell {
3    # nativeBuildInputs is usually what you want -- tools you need to run
4    nativeBuildInputs = with pkgs.buildPackages; [
5        nodejs_18
6    ];
7}