Update intro.md to echo the right nodejs version (#218)

This commit is contained in:
Egor Mihnevich
2025-04-13 13:58:59 +02:00
committed by GitHub
parent 0fc0924a8c
commit 68a91e564f

View File

@@ -136,7 +136,7 @@ Here is a `flake.nix` that defines a development environment with Node.js 18 ins
];
shellHook = ''
echo "node `${pkgs.nodejs}/bin/node --version`"
echo "node `node --version`"
'';
};
};
@@ -181,7 +181,7 @@ Here is an example:
];
shellHook = ''
echo "node `${pkgs.nodejs}/bin/node --version`"
echo "node `node --version`"
exec nu
'';
};