feat: Gitea | remove nginx proxy body limit for container registry uploads
This commit is contained in:
13
flake.nix
13
flake.nix
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user