From aece4dc5337e661aaf149985e6eb086115d813f8 Mon Sep 17 00:00:00 2001 From: korenstin Date: Thu, 17 Oct 2024 14:42:21 +0200 Subject: [PATCH] Ajout shell.nix --- shell.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 shell.nix 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"; +}