ncounter.git

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

commit
bf43bdb
parent
5b504ae
author
CheddarCrisp
date
2024-04-12 18:15:45 +0200 CEST
Add nix config
1 files changed,  +7, -0
A shell.nix
+7, -0
1@@ -0,0 +1,7 @@
2+{ pkgs ? import <nixpkgs> {} }:
3+  pkgs.mkShell {
4+    # nativeBuildInputs is usually what you want -- tools you need to run
5+    nativeBuildInputs = with pkgs.buildPackages; [
6+        nodejs_18
7+    ];
8+}