Automated commit

Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
This commit is contained in:
Oliver Davies 2025-09-23 12:13:57 +01:00
parent fe221acfe6
commit 9cb8710505
6 changed files with 813 additions and 0 deletions

18
openapi/flake.nix Normal file
View file

@ -0,0 +1,18 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs =
{ nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [
openapi-generator-cli
openapi-tui
];
};
};
}