We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ab740f commit 80c842bCopy full SHA for 80c842b
shell.nix
@@ -15,6 +15,10 @@ pkgs.mkShell rec {
15
# buildInputs = [ pkgs.ansible ];
16
buildInputs = [ ansible ];
17
18
+ # Ansible barfs when it doesn't recognize the locale, and may not have *your*
19
+ # locale available, so...
20
+ LC_ALL = "C.UTF-8";
21
+
22
# Ansible runs plugins in its own interpreter, so we need to add plugin dependencies to
23
# its Python environment
24
ansible = python.pkgs.toPythonApplication
0 commit comments