From 14896d41687b4a578307705904016e1551d27b56 Mon Sep 17 00:00:00 2001 From: Geir Okkenhaug Jerstad Date: Sat, 23 Nov 2024 12:55:05 +0100 Subject: [PATCH] added nodejs to shell.nix --- shell.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/shell.nix b/shell.nix index e69de29..7c77b62 100644 --- a/shell.nix +++ b/shell.nix @@ -0,0 +1,5 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + # nativeBuildInputs is usually what you want -- tools you need to run + nativeBuildInputs = with pkgs.buildPackages; [ nodejs ]; +}