innernet-playbook/shell.nix

11 lines
136 B
Nix
Raw Normal View History

2022-01-21 17:18:44 +01:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [
# Is this program even allowed in Nix?
ansible
];
}