matrix-docker-ansible-deploy/shell.nix
Benjamin Bädorf d8f3d8ff45
Add shell.nix
Adds a basic shell.nix with ansible
2022-06-04 00:26:40 +02:00

12 lines
218 B
Nix

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
];
}