7 lines
175 B
Nix
7 lines
175 B
Nix
self: super:
|
|
let customPackages = pkgs.callPackage ./npm { };
|
|
in with self; {
|
|
# Faster prettier for editors
|
|
nodePackages.prettierd = customPackages."@fsouza/prettierd";
|
|
}
|