diff --git a/shell.nix b/shell.nix new file mode 100644 index 00000000..a72027bd --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + buildInputs = with pkgs.buildPackages; [ + ansible_2_15 + python312 + python312Packages.python-ldap + ]; + LANG="C.UTF-8"; +}