moved to devenv

This commit is contained in:
2026-06-22 12:07:27 +01:00
parent 72c93e88c1
commit 192564fb79
34 changed files with 15242 additions and 108 deletions

11
devenv.nix Normal file
View File

@@ -0,0 +1,11 @@
{ pkgs, config, ... }: {
languages.typescript.enable = true;
packages = with pkgs; [
bun
eslint_d
];
env.DEVSHELL_NAME = "󰏖 devenv/#fab387| Bun/yellow";
processes = {
server.exec = "bun run dev";
};
}