Initial commit

This commit is contained in:
Jonathan Cooper 2026-02-06 18:20:06 -08:00
commit 7cecc1d042
6 changed files with 211 additions and 0 deletions

9
devenv.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs, lib, config, inputs, ... }:
{
languages.javascript = {
enable = true;
npm.enable = true;
};
languages.typescript.enable = true;
}