mirror of
https://git.fsfe.org/fsfe-system-hackers/innernet-playbook.git
synced 2024-11-22 06:33:11 +01:00
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
|
||
|
];
|
||
|
}
|