forked from extern/innernet-playbook
11 lines
136 B
Nix
11 lines
136 B
Nix
|
{ pkgs ? import <nixpkgs> { } }:
|
||
|
|
||
|
with pkgs;
|
||
|
|
||
|
mkShell {
|
||
|
buildInputs = [
|
||
|
# Is this program even allowed in Nix?
|
||
|
ansible
|
||
|
];
|
||
|
}
|