git-subtree-dir: frontend git-subtree-mainline:79bc04aaa7git-subtree-split:63381d9f2a
12 lines
190 B
Nix
12 lines
190 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.mkShell {
|
|
packages = [
|
|
pkgs.nodejs_22
|
|
];
|
|
|
|
shellHook = ''
|
|
echo "radui dev shell — node $(node --version), npm $(npm --version)"
|
|
'';
|
|
}
|