services/usbmuxd: init
This commit is contained in:
parent
3d95e370d9
commit
bd04542478
1 changed files with 18 additions and 0 deletions
18
services/usbmuxd.nix
Normal file
18
services/usbmuxd.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
with lib;
|
||||
mkIf (elem "usbmuxd" config.machine.services) {
|
||||
services.usbmuxd = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
libimobiledevice
|
||||
ifuse
|
||||
];
|
||||
}
|
Loading…
Add table
Reference in a new issue