From 78c593be915e0b4fb6299f7570e55ce4da15d980 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Thu, 27 Jul 2023 02:32:54 +0300 Subject: [PATCH] xmonad shell cause i dont know haskell --- shell.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/shell.nix b/shell.nix index 95259154..b4d1fe66 100644 --- a/shell.nix +++ b/shell.nix @@ -7,4 +7,14 @@ 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 + haskellPackages.xmonad-contrib + ]; + }; }