Files
pantosite/shell.nix
2024-12-27 22:05:12 +01:00

10 lines
242 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [ nodejs_22 ];
shellHook = ''
echo "Hello, Nix!"
'';
}