mirror of
https://github.com/fmhy/edit.git
synced 2025-07-29 07:12:15 +10:00
7 lines
92 B
Nix
7 lines
92 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.nodejs_20
|
|
];
|
|
}
|