diff --git a/shell.nix b/shell.nix index 95259154..af05d1f4 100644 --- a/shell.nix +++ b/shell.nix @@ -7,4 +7,13 @@ NIX_CONFIG = "experimental-features = nix-command flakes"; nativeBuildInputs = with pkgs; [ nix home-manager git ]; }; + xmonad = pkgs.mkShell { + nativeBuildInputs = with pkgs; [ + haskell-language-server + ghc + ]; + buildInputs = with pkgs; [ + haskellPackages.xmonad + ]; + }; }