Keeping in mind progressive enhancement, browser/device support, 'mobile-first', and multiple flavors of iOS 'retina' display ratios... Would this target correctly and still provide legacy support?
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and ( min--moz-device-pixel-ratio: 2),
only screen and ( -o-min-device-pixel-ratio: 2/1),
only screen and ( min-device-pixel-ratio: 2),
only screen and ( min-resolution: 192dpi),
only screen and ( min-resolution: 2dppx) { @import '2x'; }
I've seen this it looks almost TOO easy:
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and ( min-resolution: 192dpi) { @import '2x'; }
Reference for min-resolution: http://www.w3.org/TR/css3-values/#resolution