build: use build-configs

This commit is contained in:
Oliver Davies 2023-09-24 18:09:32 +01:00
parent 8c9d6bdc99
commit f1147264b5
5 changed files with 56 additions and 32 deletions

View file

@ -1,6 +1,10 @@
# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
{
inputs.devshell.url = "github:numtide/devshell";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs = {
devshell.url = "github:numtide/devshell";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
@ -10,7 +14,12 @@
perSystem = { config, self', inputs', pkgs, system, ... }: {
devshells.default = {
packages = with pkgs; [ just nodejs-19_x yarn ];
packages = with pkgs; [
"awscli"
"just"
"nodejs_20"
"yarn"
];
};
};
};