ng-repeat with filter not working

HTML

<div ng-app="myApp" ng-controller="dummy">
  <div data-ng-style="{'background-image': url({{vm.currentUser.profileImagePath}})}">hello</div>
</div>

JavaScript

var myApp = angular.module("myApp", []);

myApp.controller("dummy", function($location, $scope) {
  $scope.vm = {currentUser: {profileImagePath: 'http://www.hiltonhawaiianvillage.com/assets/img/discover/oahu-island-activities/HHV_Oahu-island-activities_Content_Beaches_455x248_x2.jpg'}};
});