about summary refs log tree commit diff
path: root/nixos/modules/services/x11/desktop-managers/xfce.nix
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2014-03-12 10:16:11 -0300
committerVladimír Čunát <vcunat@gmail.com>2014-03-19 22:15:44 +0100
commit47c7e29ffaf3e155760c84cad0d86b3270f11c1c (patch)
tree6f36275a6b63fb776922460615e4094791b74a31 /nixos/modules/services/x11/desktop-managers/xfce.nix
parent8a8ae81e40fb18a4c0c7411da9d9062fea13f793 (diff)
downloadnixlib-47c7e29ffaf3e155760c84cad0d86b3270f11c1c.tar
nixlib-47c7e29ffaf3e155760c84cad0d86b3270f11c1c.tar.gz
nixlib-47c7e29ffaf3e155760c84cad0d86b3270f11c1c.tar.bz2
nixlib-47c7e29ffaf3e155760c84cad0d86b3270f11c1c.tar.lz
nixlib-47c7e29ffaf3e155760c84cad0d86b3270f11c1c.tar.xz
nixlib-47c7e29ffaf3e155760c84cad0d86b3270f11c1c.tar.zst
nixlib-47c7e29ffaf3e155760c84cad0d86b3270f11c1c.zip
make environment.variables.GIO_EXTRA_MODULES a list
Close #1929.
Diffstat (limited to 'nixos/modules/services/x11/desktop-managers/xfce.nix')
-rw-r--r--nixos/modules/services/x11/desktop-managers/xfce.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/x11/desktop-managers/xfce.nix b/nixos/modules/services/x11/desktop-managers/xfce.nix
index 3c67571ffd5b..9ce7744b0652 100644
--- a/nixos/modules/services/x11/desktop-managers/xfce.nix
+++ b/nixos/modules/services/x11/desktop-managers/xfce.nix
@@ -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;