This commit is contained in:
Jeeves 2025-02-18 22:03:27 -07:00
commit a0ae1b422d
9 changed files with 371 additions and 0 deletions

5
shell.nix Normal file
View file

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [deno];
}