feat(systems/optional): ios tether support

This commit is contained in:
madmin 2024-08-05 13:56:07 +02:00
parent a8e926570e
commit 9396b342c2
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#https://nixos.wiki/wiki/IOS
{ pkgs }:
{
services.usbmuxd = {
enable = true;
#package = pkgs.usbmuxd2;
};
environment.systemPackages = with pkgs; [
libimobiledevice
#ifuse # optional, to mount using 'ifuse'
];
}