nixos/gnome: enable MTP support in gvfs

To support browsing files on Android phones in Nautilus (and other GVFS
based file browsers).
This commit is contained in:
Bjørn Forsman 2014-12-11 23:04:00 +01:00
parent 80e3018bc0
commit f3a46c3858

View File

@ -1,6 +1,6 @@
# gvfs backends
{ config, lib, ... }:
{ config, lib, pkgs, ... }:
with lib;
@ -37,6 +37,8 @@ in
services.dbus.packages = [ gnome3.gvfs ];
services.udev.packages = [ pkgs.libmtp ];
};
}