build: use build-configs
This commit is contained in:
parent
8c9d6bdc99
commit
f1147264b5
5 changed files with 56 additions and 32 deletions
15
flake.nix
15
flake.nix
|
@ -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"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue