From 6164ceb4c46a5e6878aa0e73de340c5710235dad Mon Sep 17 00:00:00 2001 From: Dhananjay Balan Date: Sun, 7 Jan 2024 16:18:17 +0100 Subject: [PATCH] [flake] Fix development shell --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 30c77d0..bb2e574 100644 --- a/flake.nix +++ b/flake.nix @@ -43,12 +43,12 @@ devShells.default = pkgs.mkShell { buildInputs = with pkgs; [ + builder haskellPackages.haskell-language-server # you must build it with your ghc to work ghcid cabal-install + nodePackages.prettier ]; - inputsFrom = - map (__getAttr "env") (__attrValues self.packages.${system}); }; devShell = self.devShells.${system}.default; });