aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--flake.nix9
1 files changed, 6 insertions, 3 deletions
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
];
};
};