Libimobiledevice
In order to be able to automatically mount your iOS device (such as an iPhone) when connecting it, you need to install `libimobiledevice` and to activate the `usbmuxd` service.
Add the following to your `configuration.nix`:
services.usbmuxd.enable = true;
environment.systemPackages = with pkgs; [
libimobiledevice
];