aria.coffee/shell.nix
2025-03-25 03:55:58 +11:00

11 lines
119 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
packages = [
pkgs.nodejs
pkgs.pnpm
pkgs.biome
];
}