update
Some checks failed
Build and deploy / lint (push) Has been cancelled

This commit is contained in:
Iain Learmonth 2025-06-20 14:21:33 +01:00
parent 52a5196f38
commit 293bc62673
24 changed files with 14049 additions and 423 deletions

32
flake.nix Normal file
View file

@ -0,0 +1,32 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
};
in
with pkgs;
{
devShells.default = mkShell {
buildInputs = [
git
netlify-cli
nodejs_22
];
};
}
);
}