mirror of
https://github.com/Pantonius/pantosite-astro.git
synced 2026-04-26 09:24:38 +00:00
10 lines
242 B
Nix
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!"
|
|
'';
|
|
}
|