diff --git a/provision/modules/services/peripherals.nix b/provision/modules/services/peripherals.nix index 5f458708..52a13cc1 100644 --- a/provision/modules/services/peripherals.nix +++ b/provision/modules/services/peripherals.nix @@ -5,12 +5,14 @@ in { options.modules.services.peripherals.enable = lib.mkEnableOption "peripherals"; config = lib.mkIf cfg.enable { + services.usbmuxd.enable = true; # for iOS mounting as storage environment.systemPackages = with pkgs; [ pulseaudio # Sound server for Linux and other Unix-like operating systems. pavucontrol # Simple GTK based mixer for the PulseAudio sound server + libimobiledevice # Library to support iPhone, iPod Touch and iPad devices on Linux + ifuse # fuse filesystem implementation to access the contents of iOS devices ]; - # rtkit is optional but recommended security.rtkit.enable = true; services.pipewire = { enable = true;