about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaka Hudoklin <offlinehacker@users.noreply.github.com>2017-09-23 20:35:58 +0200
committerGitHub <noreply@github.com>2017-09-23 20:35:58 +0200
commitac775ac6ddba6fb685d5a8ae9f2a74b7f25d7839 (patch)
tree7829cf98be296963e3e88cc1223bc4f887441f2c
parent0f5cd17f2ca43bc69e912ad04b83892e946ca0cc (diff)
parent948f4a9c6d15a9f5380ea23a5292fdc503804e44 (diff)
downloadnixlib-ac775ac6ddba6fb685d5a8ae9f2a74b7f25d7839.tar
nixlib-ac775ac6ddba6fb685d5a8ae9f2a74b7f25d7839.tar.gz
nixlib-ac775ac6ddba6fb685d5a8ae9f2a74b7f25d7839.tar.bz2
nixlib-ac775ac6ddba6fb685d5a8ae9f2a74b7f25d7839.tar.lz
nixlib-ac775ac6ddba6fb685d5a8ae9f2a74b7f25d7839.tar.xz
nixlib-ac775ac6ddba6fb685d5a8ae9f2a74b7f25d7839.tar.zst
nixlib-ac775ac6ddba6fb685d5a8ae9f2a74b7f25d7839.zip
Merge pull request #21077 from xtruder/nixos/programs/npm/add
npm module: add npm module for global npm config
-rw-r--r--nixos/modules/module-list.nix1
-rw-r--r--nixos/modules/programs/npm.nix44
2 files changed, 45 insertions, 0 deletions
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 5ec2a18baeda..7edea2c9538e 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -92,6 +92,7 @@
   ./programs/mosh.nix
   ./programs/mtr.nix
   ./programs/nano.nix
+  ./programs/npm.nix
   ./programs/oblogout.nix
   ./programs/qt5ct.nix
   ./programs/screen.nix
diff --git a/nixos/modules/programs/npm.nix b/nixos/modules/programs/npm.nix
new file mode 100644
index 000000000000..7ef172355c1f
--- /dev/null
+++ b/nixos/modules/programs/npm.nix
@@ -0,0 +1,44 @@
+{ config, lib, ... }:
+
+with lib;
+
+let
+  cfg = config.programs.npm;
+in
+
+{
+  ###### interface
+
+  options = {
+    programs.npm = {
+      enable = mkEnableOption "<command>npm</command> global config";
+
+      npmrc = lib.mkOption {
+        type = lib.types.lines;
+        description = ''
+          The system-wide npm configuration.
+          See <link xlink:href="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=http://npmjs.org
+          color=true
+        '';
+      };
+    };
+  };
+
+  ###### implementation
+
+  config = lib.mkIf cfg.enable {
+    environment.etc."npmrc".text = cfg.npmrc;
+
+    environment.variables.NPM_CONFIG_GLOBALCONFIG = "/etc/npmrc";
+  };
+
+}