diff --git a/.gitignore b/.gitignore index 4aedfaf..3064526 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,7 @@ website/vendor # Keep windows files with windows line endings *.winfile eol=crlf + +.direnv +.envrc +terraform-provider-fly diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..190c1de --- /dev/null +++ b/shell.nix @@ -0,0 +1,12 @@ +with (import (fetchTarball https://github.com/nixos/nixpkgs/archive/592dc9ed7f049c565e9d7c04a4907e57ae17e2d9.tar.gz) {}); + +let + + basePackages = [ + go + ]; + +in mkShell { + buildInputs = basePackages; + +}