From c371cd53829e973a7dd0d065d183c68b26203c27 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar <3998+srid@users.noreply.github.com> Date: Fri, 21 Jun 2024 17:46:57 -0400 Subject: [PATCH] chore(dev): Re-enable treefmt-nix flake check As a workaround for #238 until we have a proper fix. --- dev/flake.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev/flake.nix b/dev/flake.nix index 8bca25d..26e59f2 100644 --- a/dev/flake.nix +++ b/dev/flake.nix @@ -25,7 +25,9 @@ treefmt = { projectRoot = inputs.services-flake; projectRootFile = "flake.nix"; - flakeCheck = false; # pre-commit-hooks.nix checks this + # Even though pre-commit-hooks.nix checks it, let's have treefmt-nix + # check as well until #238 is fully resolved. + # flakeCheck = false; # pre-commit-hooks.nix checks this programs = { nixpkgs-fmt.enable = true; };