mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-17 18:24:14 +02:00
9 lines
112 B
Nix
9 lines
112 B
Nix
{pkgs ? import <nixpkgs> {}}:
|
|
with pkgs;
|
|
mkShell {
|
|
buildInputs = [
|
|
ansible
|
|
sshpass
|
|
];
|
|
}
|