summary refs log tree commit diff
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-06-11 01:06:32 +0300
committerNikolay Amiantov <ab@fmap.me>2016-06-11 03:04:03 +0300
commitf28ab85f2e34685bdf72186c0995f3e346adb2bc (patch)
tree9507a75f559780bcb37f9f5e12e085aa7f2b4aaf
parent3b24a4b09adda5f73a954071f309ec414eb609a5 (diff)
downloadnixpkgs-f28ab85f2e34685bdf72186c0995f3e346adb2bc.tar
nixpkgs-f28ab85f2e34685bdf72186c0995f3e346adb2bc.tar.gz
nixpkgs-f28ab85f2e34685bdf72186c0995f3e346adb2bc.tar.bz2
nixpkgs-f28ab85f2e34685bdf72186c0995f3e346adb2bc.tar.lz
nixpkgs-f28ab85f2e34685bdf72186c0995f3e346adb2bc.tar.xz
nixpkgs-f28ab85f2e34685bdf72186c0995f3e346adb2bc.tar.zst
nixpkgs-f28ab85f2e34685bdf72186c0995f3e346adb2bc.zip
parsoid service: use default node
-rw-r--r--nixos/modules/services/misc/parsoid.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/parsoid.nix b/nixos/modules/services/misc/parsoid.nix
index ea97d6e30e8..0844190a549 100644
--- a/nixos/modules/services/misc/parsoid.nix
+++ b/nixos/modules/services/misc/parsoid.nix
@@ -91,7 +91,7 @@ in
       wantedBy = [ "multi-user.target" ];
       after = [ "network.target" ];
       serviceConfig = {
-        ExecStart = "${pkgs.nodePackages_0_10.parsoid}/lib/node_modules/parsoid/api/server.js -c ${confFile} -n ${toString cfg.workers}";
+        ExecStart = "${pkgs.nodePackages.parsoid}/lib/node_modules/parsoid/api/server.js -c ${confFile} -n ${toString cfg.workers}";
       };
     };