mirror of
https://codeberg.org/hyperreal/ansible-homelab
synced 2024-11-01 08:33:07 +01:00
14 lines
161 B
Nix
14 lines
161 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
|
||
|
with pkgs;
|
||
|
|
||
|
mkShell {
|
||
|
buildInputs = [
|
||
|
ansible
|
||
|
ansible-lint
|
||
|
];
|
||
|
shellHooks = ''
|
||
|
export LC_ALL="C.UTF-8"
|
||
|
'';
|
||
|
}
|