From d8f3d8ff452288da3a74aca34fabada9cd1d12b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=A4dorf?= Date: Sat, 4 Jun 2022 00:26:40 +0200 Subject: [PATCH] Add shell.nix Adds a basic shell.nix with ansible --- shell.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 shell.nix 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 + ]; +} +