about summary refs log tree commit diff
path: root/pkgs/desktops/xfce
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-03-09 10:51:34 +0100
committerVladimír Čunát <vcunat@gmail.com>2013-03-09 10:51:34 +0100
commitc3511c115dfc8fc2bae2c67152fe34134c1f23de (patch)
tree5f0c915b4f3407f7f6e772c11f2ff35331c405b7 /pkgs/desktops/xfce
parenta49bd047c0fd7806603caa41a21836c0ed684657 (diff)
downloadnixlib-c3511c115dfc8fc2bae2c67152fe34134c1f23de.tar
nixlib-c3511c115dfc8fc2bae2c67152fe34134c1f23de.tar.gz
nixlib-c3511c115dfc8fc2bae2c67152fe34134c1f23de.tar.bz2
nixlib-c3511c115dfc8fc2bae2c67152fe34134c1f23de.tar.lz
nixlib-c3511c115dfc8fc2bae2c67152fe34134c1f23de.tar.xz
nixlib-c3511c115dfc8fc2bae2c67152fe34134c1f23de.tar.zst
nixlib-c3511c115dfc8fc2bae2c67152fe34134c1f23de.zip
xfce: fix NixOS support
Sorry for this forgotten commit.
Diffstat (limited to 'pkgs/desktops/xfce')
-rw-r--r--pkgs/desktops/xfce/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/desktops/xfce/default.nix b/pkgs/desktops/xfce/default.nix
index d57184a19eb4..03e0def78532 100644
--- a/pkgs/desktops/xfce/default.nix
+++ b/pkgs/desktops/xfce/default.nix
@@ -17,6 +17,11 @@ deps = rec { # xfce-global dependency overrides should be here
 
 xfce_self = rec { # the lines are very long but it seems better than the even-odd line approach
 
+  #### NixOS support
+
+  inherit (deps) gvfs;
+  xinitrc = "${xfce4session}/etc/xdg/xfce4/xinitrc";
+
   #### CORE                 from "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"
 
   exo             = callPackage ./core/exo.nix { };
@@ -62,10 +67,6 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
   xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix { };
   xfce4_cpufreq_plugin    = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix { };
 
-  #### SUPPORT
-
-  gvfs = deps.gvfs;
-
 }; # xfce_self
 
 in xfce_self