Merge pull request #84599 from doronbehar/nodejs-python3

nodejs: use python3 if possible
This commit is contained in:
Mario Rodas
2020-04-13 07:44:05 -05:00
committed by GitHub
5 changed files with 27 additions and 11 deletions

View File

@@ -13,7 +13,14 @@ in
programs.npm = {
enable = mkEnableOption "<command>npm</command> global config";
npmrc = lib.mkOption {
package = mkOption {
type = types.path;
description = "The npm package version / flavor to use";
default = pkgs.nodePackages.npm;
example = literalExample "pkgs.nodePackages_13_x.npm";
};
npmrc = mkOption {
type = lib.types.lines;
description = ''
The system-wide npm configuration.
@@ -40,7 +47,7 @@ in
environment.variables.NPM_CONFIG_GLOBALCONFIG = "/etc/npmrc";
environment.systemPackages = [ pkgs.nodePackages.npm ];
environment.systemPackages = [ cfg.package ];
};
}