This commit is contained in:
Alexander Svan
2024-02-25 10:19:47 +01:00
commit d6c361ca0e
4 changed files with 153 additions and 0 deletions

24
flake.nix Normal file
View File

@@ -0,0 +1,24 @@
{
description = "A flake for Terraform development";
inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }: {
devShells.x86_64-linux.default =
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
in
pkgs.mkShell {
buildInputs = with pkgs; [
terraform
cdrtools
kubectl
openlens
];
};
};
}