added ios phone support

This commit is contained in:
chloe 2025-02-23 11:25:52 +01:00
parent 7ca03bacd4
commit 4d7601861d
2 changed files with 16 additions and 1 deletions

View file

@ -1,8 +1,9 @@
{config, ...}:
{ config, ... }:
{
imports = [
./bluetooth.nix
./pipewire.nix
./nvidia.nix
./ios-phone-support.nix
];
}

View file

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