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:
parent
42aefef238
commit
2d7fc66c79
1 changed files with 1 additions and 1 deletions
|
@ -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" ];
|
||||
|
|
Loading…
Reference in a new issue