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