1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

xmonad-with-packages: add xmonad-contrib to packages by default

This is more newbie-friendly; a user without much Nix knowledge would
"nix search" for xmonad, see xmonad-with-packages, and just
immediately install it. This basically never works because most xmonad
users use xmonad-contrib. If we add xmonad-contrib to the packages
list for xmonad by default, then the new user's straightforward action
will just work, most of the time.
This commit is contained in:
Spencer Baugh 2019-02-26 18:48:56 +00:00
parent 0c89c444a2
commit ffdd02344d

View file

@ -20309,7 +20309,7 @@ in
xmonad-with-packages = callPackage ../applications/window-managers/xmonad/wrapper.nix {
inherit (haskellPackages) ghcWithPackages;
packages = self: [];
packages = self: [ haskellPackages.xmonad-contrib ];
};
xmonad_log_applet = callPackage ../applications/window-managers/xmonad/log-applet {