From ffdd02344d10d9a1b2d5670f9632329ac8d94bd5 Mon Sep 17 00:00:00 2001 From: Spencer Baugh Date: Tue, 26 Feb 2019 18:48:56 +0000 Subject: [PATCH] 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. --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4bb678f9dee..80b4d0b3224 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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 {