oliverdavies.uk/flake.nix

27 lines
660 B
Nix
Raw Normal View History

2023-09-24 17:09:32 +00:00
# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
2023-03-21 21:01:43 +00:00
{
2023-09-24 17:09:32 +00:00
inputs = {
devshell.url = "github:numtide/devshell";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
2023-03-21 21:01:43 +00:00
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ inputs.devshell.flakeModule ];
systems = [ "x86_64-linux" ];
perSystem = { config, self', inputs', pkgs, system, ... }: {
devshells.default = {
2023-09-24 17:09:32 +00:00
packages = with pkgs; [
"awscli"
"just"
"nodejs_20"
"yarn"
];
2023-03-21 21:01:43 +00:00
};
};
};
2023-03-21 21:01:43 +00:00
}