From 469b0391b749a24b52b5da1114758056961dcdc1 Mon Sep 17 00:00:00 2001 From: harry Date: Sun, 15 Sep 2024 19:08:21 +0200 Subject: [PATCH] added ios tethering support --- features/isos/goober.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/features/isos/goober.nix b/features/isos/goober.nix index 9168072..e8165ee 100644 --- a/features/isos/goober.nix +++ b/features/isos/goober.nix @@ -56,6 +56,9 @@ # Add your own packages here neovim git + # required for ios tethering + libimobiledevice + ifuse # optional, to mount using 'ifuse' ]; boot.kernelModules = [ "wl" ]; @@ -89,4 +92,8 @@ # Optionally, you may need to select the appropriate driver version for your specific GPU. package = config.boot.kernelPackages.nvidiaPackages.stable; }; + + # ios tethering + services.usbmuxd.enable = true; + }