feat: Gitea | remove nginx proxy body limit for container registry uploads

This commit is contained in:
2025-10-12 06:05:46 +05:00
parent 28d1671ca6
commit eccb361d28
3 changed files with 52 additions and 3 deletions

View File

@@ -4,9 +4,14 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
krew2nix = {
url = "github:eigengrau/krew2nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { nixpkgs, flake-utils, ... }: flake-utils.lib.eachDefaultSystem (system:
outputs = { nixpkgs, flake-utils, krew2nix, ... }: flake-utils.lib.eachDefaultSystem (system:
let
lib = nixpkgs.lib;
@@ -19,12 +24,17 @@
];
};
};
kubectl = krew2nix.packages.${system}.kubectl;
in {
# Define the devShell for the current system
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
kubernetes-helm
kubectl
(kubectl.withKrewPlugins (plugins: with plugins; [
cnpg
]))
nil
terraform
tflint
@@ -39,6 +49,7 @@
# cli tools
nodePackages.cdktf-cli
nodePackages.prettier
];
};
}