nixos/services/usbmuxd.nix
2025-03-21 23:35:33 +01:00

18 lines
225 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib;
mkIf (elem "usbmuxd" config.machine.services) {
services.usbmuxd = {
enable = true;
};
environment.systemPackages = with pkgs; [
libimobiledevice
ifuse
];
}