Skip to content

Commit

Permalink
enable profiling
Browse files Browse the repository at this point in the history
  • Loading branch information
sandydoo committed Jun 4, 2024
1 parent 5727f06 commit c3f3d04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
};
in
{
cachix = pkgs.haskell.lib.justStaticExecutables cachix;
default = pkgs.haskell.lib.justStaticExecutables cachix;
cachix = hlib.enableLibraryProfiling (hlib.enableExecutableProfiling (hlib.justStaticExecutables cachix));
default = hlib.enableLibraryProfiling (hlib.enableExecutableProfiling (hlib.justStaticExecutables cachix));
ci = self.devShells.${system}.default.ci;
release = pkgs.symlinkJoin { name = "release"; paths = builtins.attrValues release; };
devenv-up = self.devShells.${system}.default.config.procfileScript;
Expand Down

0 comments on commit c3f3d04

Please sign in to comment.