innernet-playbook/shell.nix
2022-01-21 17:18:44 +01:00

11 lines
136 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [
# Is this program even allowed in Nix?
ansible
];
}