initial commit

This commit is contained in:
Jeeves 2025-01-11 20:22:47 -07:00
commit d385872211
8 changed files with 433 additions and 0 deletions

4
shell.nix Normal file
View file

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