18 lines
363 B
Nix
18 lines
363 B
Nix
# https://nix.dev/tutorials/declarative-and-reproducible-developer-environments
|
|
with import <nixpkgs> { };
|
|
|
|
mkShell {
|
|
|
|
# Package names can be found via https://search.nixos.org/packages
|
|
nativeBuildInputs = [
|
|
nodejs_22
|
|
sqlite
|
|
python3
|
|
];
|
|
|
|
# NIX_ENFORCE_PURITY = true;
|
|
|
|
shellHook = ''
|
|
export PATH="$PWD/node_modules/.bin/:$PATH"
|
|
'';
|
|
} |