mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01: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:
parent
aa1bf31bcb
commit
0be32c9d42
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ in
|
|||
|
||||
config = mkIf cfg.enable (mkMerge [
|
||||
{
|
||||
home.packages = [ xmonad ];
|
||||
home.packages = [ (lowPrio xmonad) ];
|
||||
xsession.windowManager.command = "${xmonad}/bin/xmonad";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue