Add shell.nix
Adds a basic shell.nix with ansible
This commit is contained in:
parent
976b7f42b4
commit
d8f3d8ff45
1 changed files with 11 additions and 0 deletions
11
shell.nix
Normal file
11
shell.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
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
|
||||
];
|
||||
}
|
||||
|
Loading…
Add table
Reference in a new issue