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:
parent
0c89c444a2
commit
ffdd02344d
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue