diff --git a/usb.nix b/usb.nix index d589e1b..1d0e9cf 100644 --- a/usb.nix +++ b/usb.nix @@ -1,9 +1,14 @@ -{ pkgs, ... }: - +{ config, pkgs, ... }: { - services.gvfs.enable = true; environment.systemPackages = with pkgs; [ gvfs - mtpfs + mtpfs + jmtpfs ]; + + services.udev.packages = with pkgs; [ + libmtp + ]; + + services.gvfs.enable = true; }