parsoid service: use default node

+1 -1
+1 -1
nixos/modules/services/misc/parsoid.nix
··· 91 91 wantedBy = [ "multi-user.target" ]; 92 92 after = [ "network.target" ]; 93 93 serviceConfig = { 94 - ExecStart = "${pkgs.nodePackages_0_10.parsoid}/lib/node_modules/parsoid/api/server.js -c ${confFile} -n ${toString cfg.workers}"; 94 + ExecStart = "${pkgs.nodePackages.parsoid}/lib/node_modules/parsoid/api/server.js -c ${confFile} -n ${toString cfg.workers}"; 95 95 }; 96 96 }; 97 97