mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-09 23:20:18 +02:00
added ios phone support
This commit is contained in:
parent
7ca03bacd4
commit
4d7601861d
2 changed files with 16 additions and 1 deletions
|
@ -4,5 +4,6 @@
|
||||||
./bluetooth.nix
|
./bluetooth.nix
|
||||||
./pipewire.nix
|
./pipewire.nix
|
||||||
./nvidia.nix
|
./nvidia.nix
|
||||||
|
./ios-phone-support.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
14
hosts/goober/features/hardware/ios-phone-support.nix
Normal file
14
hosts/goober/features/hardware/ios-phone-support.nix
Normal 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'
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue