make environment.variables.GIO_EXTRA_MODULES a list

Close #1929.
This commit is contained in:
José Romildo Malaquias 2014-03-12 10:16:11 -03:00 committed by Vladimír Čunát
parent 8a8ae81e40
commit 47c7e29ffa
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@ in {
'';
};
environment.variables.GIO_EXTRA_MODULES = "${gnome3.dconf}/lib/gio/modules";
environment.variables.GIO_EXTRA_MODULES = [ "${gnome3.dconf}/lib/gio/modules" ];
environment.systemPackages =
[ gnome3.evince
gnome3.eog

View file

@ -81,7 +81,7 @@ in
environment.pathsToLink =
[ "/share/xfce4" "/share/themes" "/share/mime" "/share/desktop-directories" "/share/gtksourceview-2.0" ];
environment.variables.GIO_EXTRA_MODULES = "${pkgs.xfce.gvfs}/lib/gio/modules";
environment.variables.GIO_EXTRA_MODULES = [ "${pkgs.xfce.gvfs}/lib/gio/modules" ];
# Enable helpful DBus services.
services.udisks2.enable = true;