You probably meant the peer keep alive link and not the peer link don't you? Else I don't have an explanation why an ACL on your mgmt interface should have an impact on other interfaces.
First, your ACL is wrong. With "permit 22" you allow protocol type 22 and not tcp/22. Try this:
permit tcp host 10.132.6.145 host 10.132.5.37 eq 22
However this will again kill your vPC keep-alives, snmp and whatever else is received on the mgmt interface. If all you want to do is to restrict vty access this could be achieved in an easier way without interfering with other management traffic:
line vty
access-class 100 in
ip access-list 100
10 permit ip host 10.132.6.145 any
Regards
Pille