forked from Deuxfleurs/infrastructure
13 lines
228 B
Nix
13 lines
228 B
Nix
let
|
|
common = import ./common.nix;
|
|
pkgs = import common.pkgsSrc {};
|
|
nodejs = pkgs.${common.nodejs};
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
nodejs
|
|
pkgs.nodePackages.npm
|
|
pkgs.nodePackages.bower
|
|
];
|
|
}
|
|
|