matrix-docker-ansible-deploy/shell.nix

12 lines
218 B
Nix
Raw Normal View History

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