ansible-builder/shell.nix

11 lines
153 B
Nix
Raw Normal View History

2021-10-10 11:22:46 +02:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.ansible
# keep this line if you use bash
pkgs.bashInteractive
];
}