Add shell.nix

Adds a basic shell.nix with ansible
This commit is contained in:
Benjamin Bädorf 2022-06-04 00:26:40 +02:00
parent 976b7f42b4
commit d8f3d8ff45
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C

11
shell.nix Normal file
View file

@ -0,0 +1,11 @@
let
unstable = import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixos-unstable.tar.gz) { };
in
{ nixpkgs ? import <nixpkgs> {} }:
with nixpkgs; mkShell {
buildInputs = [
ansible
ansible-lint
];
}