Files
pantosite/shell.nix

10 lines
242 B
Nix
Raw Normal View History

2024-12-27 22:05:12 +01:00
{ 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!"
'';
}