ansible-homelab/shell.nix
2024-10-26 13:35:07 -05:00

14 lines
161 B
Nix

{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
ansible
ansible-lint
];
shellHooks = ''
export LC_ALL="C.UTF-8"
'';
}