ansible-builder/shell.nix
2021-10-10 11:22:46 +02:00

11 lines
153 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.ansible
# keep this line if you use bash
pkgs.bashInteractive
];
}