chore: Adds Nix.

This commit is contained in:
greysoh 2024-04-17 11:34:18 -04:00
parent 939eb0b9d7
commit dfc258bde6
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37

6
shell.nix Normal file
View file

@ -0,0 +1,6 @@
let
pkgs = import (fetchTarball ("channel:nixpkgs-unstable")) { };
in
pkgs.mkShell {
buildInputs = [ pkgs.nodejs pkgs.sqlite ];
}