* Enable gvfs in Xfce.

svn path=/nixos/trunk/; revision=29044
This commit is contained in:
Eelco Dolstra 2011-09-05 20:37:06 +00:00
parent 94014f4adc
commit 8d8c250b8f

View file

@ -74,11 +74,18 @@ in
++ optionals isXfce48 [
pkgs.xfce.libxfce4ui
pkgs.xfce.garcon
pkgs.xfce.thunar_volman
pkgs.xfce.gvfs
]
++ optional config.powerManagement.enable pkgs.xfce.xfce4_power_manager;
environment.pathsToLink =
[ "/share/xfce4" "/share/themes" "/share/mime" "/share/desktop-directories" ];
environment.shellInit =
''
export GIO_EXTRA_MODULES=${pkgs.xfce.gvfs}/lib/gio/modules
'';
# Enable helpful DBus services.
services.hal = mkIf (!isXfce48) { enable = true; };