nixpkgs/pkgs/desktops/lxde/default.nix
AndersonTorres c268cb0725 lxde: refactor
To be more in line with the other desktops. Indeed it is strange to look at all
those lxde packages spread over all-packages.nix.
2022-05-07 19:05:38 -03:00

24 lines
493 B
Nix

{ config, lib, pkgs }:
lib.makeScope pkgs.newScope (self: with self; {
lxappearance = callPackage ./core/lxappearance { };
lxappearance-gtk2 = callPackage ./core/lxappearance {
gtk2 = gtk2-x11;
withGtk3 = false;
};
lxmenu-data = callPackage ./core/lxmenu-data { };
lxpanel = callPackage ./core/lxpanel {
gtk2 = gtk2-x11;
};
lxrandr = callPackage ./core/lxrandr { };
lxsession = callPackage ./core/lxsession { };
lxtask = callPackage ./core/lxtask { };
})