summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2021-12-27 02:27:53 +0000
committerGitHub <noreply@github.com>2021-12-27 02:27:53 +0000
commitf6d17af6b31d2bc75691ead2378693657fc2858c (patch)
tree601a758cb7c2a5375a6de4594284d150f7f69a57 /nixos
parentf1247ef68232a71b6e3c80aa614eea7671442c4c (diff)
parent2d7fc66c79d7543ada565c96a3c6ad2b15c6b350 (diff)
downloadnixpkgs-f6d17af6b31d2bc75691ead2378693657fc2858c.tar
nixpkgs-f6d17af6b31d2bc75691ead2378693657fc2858c.tar.gz
nixpkgs-f6d17af6b31d2bc75691ead2378693657fc2858c.tar.bz2
nixpkgs-f6d17af6b31d2bc75691ead2378693657fc2858c.tar.lz
nixpkgs-f6d17af6b31d2bc75691ead2378693657fc2858c.tar.xz
nixpkgs-f6d17af6b31d2bc75691ead2378693657fc2858c.tar.zst
nixpkgs-f6d17af6b31d2bc75691ead2378693657fc2858c.zip
Merge pull request #152289 from lovesegfault/fix-mtp-udev-path
nixos/gvfs: fix libmtp udev package path
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/desktops/gvfs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/desktops/gvfs.nix b/nixos/modules/services/desktops/gvfs.nix
index b6a27279bdf..cc9a4603270 100644
--- a/nixos/modules/services/desktops/gvfs.nix
+++ b/nixos/modules/services/desktops/gvfs.nix
@@ -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" ];