ansible/shell.nix
2025-08-07 23:39:04 +02:00

10 lines
236 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs.buildPackages; [
ansible_2_16
python313Packages.jinja2
python313Packages.requests
python313Packages.pysocks
];
LANG="C.UTF-8";
}