summary refs log tree commit diff
path: root/nixos/modules/programs/environment.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-01-19 11:05:33 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-01-26 20:59:49 -0600
commit849647a3eb44dcf475da30e7de671121a13e3c01 (patch)
tree1ea1d3f046812898c7344ed833ba1ab50ba2df53 /nixos/modules/programs/environment.nix
parentd06b75b4212b4d33e385d75575ae6593dea3f02d (diff)
downloadnixpkgs-849647a3eb44dcf475da30e7de671121a13e3c01.tar
nixpkgs-849647a3eb44dcf475da30e7de671121a13e3c01.tar.gz
nixpkgs-849647a3eb44dcf475da30e7de671121a13e3c01.tar.bz2
nixpkgs-849647a3eb44dcf475da30e7de671121a13e3c01.tar.lz
nixpkgs-849647a3eb44dcf475da30e7de671121a13e3c01.tar.xz
nixpkgs-849647a3eb44dcf475da30e7de671121a13e3c01.tar.zst
nixpkgs-849647a3eb44dcf475da30e7de671121a13e3c01.zip
environment: set paths for Qt plugins and QML
Diffstat (limited to 'nixos/modules/programs/environment.nix')
-rw-r--r--nixos/modules/programs/environment.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/nixos/modules/programs/environment.nix b/nixos/modules/programs/environment.nix
index a5ec387df64..4d93d2d35b4 100644
--- a/nixos/modules/programs/environment.nix
+++ b/nixos/modules/programs/environment.nix
@@ -46,12 +46,14 @@ in
         PERL5LIB = [ "/lib/perl5/site_perl" ];
         KDEDIRS = [ "" ];
         STRIGI_PLUGIN_PATH = [ "/lib/strigi/" ];
-        QT_PLUGIN_PATH = [ "/lib/qt4/plugins" "/lib/kde4/plugins" ];
+        QT_PLUGIN_PATH = [ "/lib/qt4/plugins" "/lib/kde4/plugins" "/lib/qt5/plugins" ];
+        QML2_IMPORT_PATH = [ "/lib/qml" ];
         QTWEBKIT_PLUGIN_PATH = [ "/lib/mozilla/plugins/" ];
         GTK_PATH = [ "/lib/gtk-2.0" "/lib/gtk-3.0" ];
         XDG_CONFIG_DIRS = [ "/etc/xdg" ];
         XDG_DATA_DIRS = [ "/share" ];
         MOZ_PLUGIN_PATH = [ "/lib/mozilla/plugins" ];
+        LIBEXEC_PATH = [ "/lib/libexec" ];
       };
 
     environment.extraInit =