12 lines
218 B
Nix
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
|
||
|
];
|
||
|
}
|
||
|
|