nix-config/hosts/goober/features/hardware/ios-phone-support.nix
2025-02-23 11:25:52 +01:00

14 lines
233 B
Nix

{ config, pkgs, ... }:
{
services.usbmuxd = {
enable = true;
package = pkgs.usbmuxd2;
};
environment.systemPackages = with pkgs; [
libimobiledevice
usbutils
ifuse # optional, to mount using 'ifuse'
];
}