Files
ecosystem/shell.nix
2026-02-03 15:36:58 +11:00

5 lines
115 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [ nodejs_22 ];
}