chore: switch from shell.nix to devenv

This commit is contained in:
2025-05-24 21:40:08 +02:00
parent f720e6a57e
commit b3a4f3cbd8
7 changed files with 144 additions and 12 deletions

9
devenv.nix Normal file
View File

@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
languages.typescript.enable = true;
packages = [ pkgs.nodejs_20 ];
scripts.export.exec = ''
${pkgs.emacs}/bin/emacs -Q --script export.el
'';
}