feat: add devenv

This commit is contained in:
2025-05-27 17:13:17 -04:00
commit de91da311f
4 changed files with 150 additions and 0 deletions

11
devenv.nix Normal file
View File

@@ -0,0 +1,11 @@
{ pkgs, lib, config, inputs, ... }:
{
packages = [ pkgs.git ];
# https://devenv.sh/languages/
languages.javascript.enable = true;
languages.javascript.bun.enable = true;
languages.typescript.enable = true;
}