[XMonad] Enable building of xmonad-contrib as part of nix develop of personal config

This commit is contained in:
Ivan Malison 2021-08-14 02:20:57 -06:00
parent 00be078bc6
commit 0f56aa3600
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
packages: .
packages: . xmonad-contrib/

View File

@ -19,7 +19,7 @@
in
rec {
devShell = pkgs.haskellPackages.shellFor {
packages = p: [ p.imalison-xmonad ];
packages = p: [ p.imalison-xmonad p.xmonad-contrib ];
buildInputs = with pkgs.haskellPackages; [
cabal-install haskell-language-server hlint ghcid ormolu implicit-hie
];