aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/desktops/xfce/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/desktops/xfce/default.nix')
-rw-r--r--nixpkgs/pkgs/desktops/xfce/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/nixpkgs/pkgs/desktops/xfce/default.nix b/nixpkgs/pkgs/desktops/xfce/default.nix
index 07773523b3e..7442ff478f5 100644
--- a/nixpkgs/pkgs/desktops/xfce/default.nix
+++ b/nixpkgs/pkgs/desktops/xfce/default.nix
@@ -3,8 +3,6 @@
lib.makeScope pkgs.newScope (self: with self; {
#### NixOS support
- inherit (pkgs.gnome3) dconf;
-
mkXfceDerivation = callPackage ./mkXfceDerivation.nix { };
automakeAddFlags = pkgs.makeSetupHook { } ./automakeAddFlags.sh;
@@ -58,6 +56,8 @@ lib.makeScope pkgs.newScope (self: with self; {
#### APPLICATIONS
+ catfish = callPackage ./applications/catfish { };
+
gigolo = callPackage ./applications/gigolo { };
mousepad = callPackage ./applications/mousepad { };
@@ -139,7 +139,7 @@ lib.makeScope pkgs.newScope (self: with self; {
xfce4-timer-plugin = callPackage ./panel-plugins/xfce4-timer-plugin.nix { };
- xfce4-verve-plugin = callPackage ./panel-plugins/xfce4-verve-plugin.nix { };
+ xfce4-verve-plugin = callPackage ./panel-plugins/xfce4-verve-plugin { };
xfce4-xkb-plugin = callPackage ./panel-plugins/xfce4-xkb-plugin { };
@@ -217,4 +217,7 @@ lib.makeScope pkgs.newScope (self: with self; {
thunar-bare = thunar.override {
thunarPlugins = [];
};
+
+ # added 2019-11-30
+ inherit (pkgs) dconf;
})