You can get the min salary employee first and then filter by it,
Comparator comparator = Comparator.comparing( Employee :: getSalary);
Optional min = employees.stream()
.min(comparator);
List lowSalary = employees.stream()
.filter(ele->ele.salary==min.get().salary)
.collect(Collectors.toList());