1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-27 17:08:31 +02:00

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 committed by Robert Helgesson
parent aa1bf31bcb
commit 0be32c9d42
No known key found for this signature in database
GPG Key ID: C3DB11069E65DC86

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";
}