ansible-homelab/shell.nix

14 lines
161 B
Nix
Raw Normal View History

2024-10-26 20:35:07 +02:00
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
ansible
ansible-lint
];
shellHooks = ''
export LC_ALL="C.UTF-8"
'';
}