nixos/gvfs: fix libmtp udev package path

As pointed out by @sigprof[1] my bump of libmtp silently broke this, as I
moved the udev files out of the bin output of the pkg.

[1]: https://github.com/NixOS/nixpkgs/pull/144290#discussion_r775266642
This commit is contained in:
Bernardo Meurer 2021-12-26 20:05:05 -03:00
parent 42aefef238
commit 2d7fc66c79
No known key found for this signature in database
GPG key ID: F4C0D53B8D14C246

View file

@ -54,7 +54,7 @@ in
systemd.packages = [ cfg.package ];
services.udev.packages = [ pkgs.libmtp.bin ];
services.udev.packages = [ pkgs.libmtp ];
# Needed for unwrapped applications
environment.variables.GIO_EXTRA_MODULES = [ "${cfg.package}/lib/gio/modules" ];