nixos/home-manager/software/ansible/default.nix
2022-06-03 10:18:28 +02:00

12 lines
156 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
ansible
ansible-lint
#nodejs
#nodePackages.npm
nodePackages.prettier
sshpass
];
}