nixpkgs/nixos/modules/programs/npm.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.0 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2016-12-11 17:05:49 +00:00
with lib;
let
cfg = config.programs.npm;
in
{
###### interface
options = {
programs.npm = {
enable = mkEnableOption "{command}`npm` global config";
2016-12-11 17:05:49 +00:00
package = mkPackageOption pkgs [ "nodePackages" "npm" ] {
example = "nodePackages_13_x.npm";
};
npmrc = mkOption {
2016-12-11 17:05:49 +00:00
type = lib.types.lines;
description = ''
2016-12-11 17:05:49 +00:00
The system-wide npm configuration.
See <https://docs.npmjs.com/misc/config>.
'';
default = ''
prefix = ''${HOME}/.npm
'';
example = ''
prefix = ''${HOME}/.npm
https-proxy=proxy.example.com
init-license=MIT
init-author-url=https://www.npmjs.com/
2016-12-11 17:05:49 +00:00
color=true
'';
};
};
};
###### implementation
config = lib.mkIf cfg.enable {
2019-08-13 21:52:01 +00:00
environment.etc.npmrc.text = cfg.npmrc;
2016-12-11 17:05:49 +00:00
environment.variables.NPM_CONFIG_GLOBALCONFIG = "/etc/npmrc";
environment.systemPackages = [ cfg.package ];
2016-12-11 17:05:49 +00:00
};
}