nix-flake-examples/aws-cdk/flake.nix
2023-12-19 13:47:26 -08:00

23 lines
539 B
Nix

{
description = "Good basic flake template";
inputs = {
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
systempkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = systempkgs.mkShell {
buildInputs = with systempkgs; [
nodejs
nodePackages.aws-cdk
];
};
}
);
}