This commit is contained in:
Alexander Svan
2025-04-01 07:18:08 +02:00
commit b0ce430841
5 changed files with 132 additions and 0 deletions

21
flake.nix Normal file
View File

@@ -0,0 +1,21 @@
{
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; [
docker-compose
];
};
};
}