xmonad: make package lower priority

This avoids a conflict for when the user has an xmonad package installed through
`haskellPackages.ghcWithPackages`, which is necessary for wanting to
load the xmonad config with ghc.
This commit is contained in:
Silvan Mosberger 2017-12-08 00:01:50 +01:00
parent c023b0532a
commit 2e6b280105
No known key found for this signature in database
GPG key ID: 9424360B4B85C9E7

View file

@ -83,7 +83,7 @@ in
config = mkIf cfg.enable (mkMerge [
{
home.packages = [ xmonad ];
home.packages = [ (lowPrio xmonad) ];
xsession.windowManager.command = "${xmonad}/bin/xmonad";
}