all repos — nixfiles @ cd2e1168a50070aa2d40cfbc59388111fdbaf251

System and user configuration, managed by nix and home-manager

javascript: rename node alias to nodejs
Alan Pearce alan@alanpearce.eu
Thu, 11 Mar 2021 14:59:21 +0100
commit

cd2e1168a50070aa2d40cfbc59388111fdbaf251

parent

9c977d26cf0dc321c5615ec1ca01b1153c2677b5

1 files changed, 3 insertions(+), 4 deletions(-)

jump to
M user/settings/javascript.nixuser/settings/javascript.nix
@@ -1,19 +1,18 @@ { config, pkgs, ... }:
 
 let
-  node = pkgs.nodejs-14_x;
+  nodejs = pkgs.nodejs-14_x;
 in
 {
   nixpkgs.overlays = [
     (self: super: {
       node2nixPackages = super.callPackage ../packages/node2nix {
-        nodejs = node;
+        inherit nodejs;
       };
     })
   ];
-
   home.packages = (with pkgs; [
-    node
+    nodejs
   ] ++ (
     if stdenv.isDarwin
     then