From dfc258bde6bbde7565793db2b61a9fd20a7758f9 Mon Sep 17 00:00:00 2001 From: greysoh Date: Wed, 17 Apr 2024 11:34:18 -0400 Subject: [PATCH] chore: Adds Nix. --- shell.nix | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..0fc40df --- /dev/null +++ b/shell.nix @@ -0,0 +1,6 @@ +let + pkgs = import (fetchTarball ("channel:nixpkgs-unstable")) { }; +in +pkgs.mkShell { + buildInputs = [ pkgs.nodejs pkgs.sqlite ]; +} \ No newline at end of file