roadmap/shell.nix

5 lines
115 B
Nix

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