From 1d07e554284593cdca804404d1d9f68a473ee986 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sun, 15 Dec 2024 15:39:02 +0530 Subject: Refactor a bunch of stuff --- flake.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index ead8307..e5ba93a 100644 --- a/flake.nix +++ b/flake.nix @@ -7,13 +7,16 @@ outputs = inputs@{ self, nixpkgs, flake-parts, ... }: flake-parts.lib.mkFlake { inherit inputs; } { systems = nixpkgs.lib.systems.flakeExposed; - imports = [ inputs.haskell-flake.flakeModule ]; + imports = [ + inputs.haskell-flake.flakeModule + ]; perSystem = { self', pkgs, lib, config, ... }: { haskellProjects.default = { projectRoot = builtins.toString (lib.fileset.toSource { root = ./.; fileset = lib.fileset.unions [ + ./bin ./src ./specs ./chelleport.cabal @@ -25,7 +28,7 @@ devShell = { # tools = hp: { fourmolu = hp.fourmolu; ghcid = null; }; - hlsCheck.enable = pkgs.stdenv.isDarwin; + hlsCheck.enable = false; }; autoWire = [ "packages" "apps" "checks" ]; @@ -40,7 +43,7 @@ ]; packages = with pkgs; [ just - haskellPackages.hspec-golden + nodemon ]; }; }; -- cgit v1.3.1