diff --git a/shell.nix b/shell.nix new file mode 100644 index 00000000..d4175a18 --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +let + unstable = import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixos-unstable.tar.gz) { }; +in +{ nixpkgs ? import {} }: +with nixpkgs; mkShell { + buildInputs = [ + ansible + ansible-lint + ]; +} +