mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30: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
|
@ -1,8 +1,9 @@
|
|||
{config, ...}:
|
||||
{ config, ... }:
|
||||
{
|
||||
imports = [
|
||||
./bluetooth.nix
|
||||
./pipewire.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