Libimobiledevice

From NixOS Wiki
Revision as of 15:25, 18 October 2020 by imported>Jiehong (Created page with "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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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
];