From 351fbc4a76317062ac224be441c29680c50744b3 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Wed, 2 Aug 2023 02:16:08 +0300 Subject: [PATCH] nix shell for xmonad --- shell.nix | 9 +++++++++ 1 file changed, 9 insertions(+) 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 + ]; + }; }