Some changes

This commit is contained in:
Anton Pogrebnjak
2025-09-09 20:57:22 +02:00
parent 4fcf4bd2e8
commit 5bd3063d5f
10 changed files with 3137 additions and 1604 deletions

View File

@@ -1,9 +1,14 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [ nodejs_22 ];
{
pkgs ? import <nixpkgs> { },
}:
shellHook = ''
echo "Hello, Nix!"
'';
pkgs.mkShell {
packages = with pkgs; [
nodejs
nodePackages.npm
];
shellHook = ''
echo Welcome!
'';
}