9 lines
167 B
Nix
9 lines
167 B
Nix
{pkgs, ...}: {
|
|
services.usbmuxd.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
libimobiledevice
|
|
ifuse # optional, to mount using 'ifuse'
|
|
];
|
|
}
|