summaryrefslogtreecommitdiffstats
path: root/pkgs/desktops/xfce/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-10-20 17:09:39 +0200
committerVladimír Čunát <vcunat@gmail.com>2016-10-20 17:14:17 +0200
commit446d57c66a092f5719cd5a93f0d7edbb60e3d13a (patch)
tree90859f35e19f380c933789421b1e0f1fa9a31dd5 /pkgs/desktops/xfce/default.nix
parented9153c521ae65c1f510b46a5a3108b0f0816b68 (diff)
xfce: unbreak gtk3 theming for xfce desktop users
This is a partial revert of f0da9ff4. The half-usable menus in gtk3 apps have been aggravating me for months.
Diffstat (limited to 'pkgs/desktops/xfce/default.nix')
-rw-r--r--pkgs/desktops/xfce/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/desktops/xfce/default.nix b/pkgs/desktops/xfce/default.nix
index f8ede8cae45f..991ed0eb6bee 100644
--- a/pkgs/desktops/xfce/default.nix
+++ b/pkgs/desktops/xfce/default.nix
@@ -22,7 +22,8 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
exo = callPackage ./core/exo.nix { };
garcon = callPackage ./core/garcon.nix { };
- gtk_xfce_engine = callPackage ./core/gtk-xfce-engine.nix { withGtk3 = true; }; # ToDo: when should be used?
+ gtk_xfce_engine = callPackage ./core/gtk-xfce-engine.nix
+ { withGtk3 = false; }; # = true; was completely breaking GTK3 app layout
libxfce4ui = callPackage ./core/libxfce4ui.nix { };
libxfce4ui_gtk3 = libxfce4ui.override { withGtk3 = true; };
libxfce4util = callPackage ./core/libxfce4util.nix { };