From 4cfaea86db0969671176a186c696c3973320e3df Mon Sep 17 00:00:00 2001 From: Elias Kohout Date: Tue, 7 Apr 2026 07:05:00 +0200 Subject: [PATCH] Remove invalid npm package from nodejs language packages (bundled with nodejs) --- nixos/modules/development.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/development.nix b/nixos/modules/development.nix index 37bf444..fdb78a6 100644 --- a/nixos/modules/development.nix +++ b/nixos/modules/development.nix @@ -16,7 +16,7 @@ languagePackages = { rust = with pkgs; [ rustup cargo-deny cargo-edit ]; python = with pkgs; [ python3 python3Packages.pip python3Packages.virtualenv uv ]; - nodejs = with pkgs; [ nodejs npm pnpm ]; + nodejs = with pkgs; [ nodejs pnpm ]; go = with pkgs; [ go golangci-lint ]; ruby = with pkgs; [ ruby bundler ]; };