From c85d292d1a12c5d99b7b2ad81b98206c5ea7ecbd Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Sat, 20 Sep 2025 11:26:04 -0400 Subject: [PATCH] comment out flake check for neovim to try to fix gh actions --- flake.nix | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/flake.nix b/flake.nix index aef558e..8ed9e8b 100644 --- a/flake.nix +++ b/flake.nix @@ -247,30 +247,30 @@ default = lib.pkgsBySystem.${system}.nmasur.dotfiles-devshell; }); - checks = lib.forAllSystems ( - system: - let - pkgs = import nixpkgs { - inherit system; - overlays = lib.overlays; - }; - in - { - neovim = - pkgs.runCommand "neovim-check-health" { buildInputs = [ inputs.self.packages.${system}.neovim ]; } - '' - mkdir -p $out - export HOME=$TMPDIR - nvim -c "checkhealth" -c "write $out/health.log" -c "quitall" + # checks = lib.forAllSystems ( + # system: + # let + # pkgs = import nixpkgs { + # inherit system; + # overlays = lib.overlays; + # }; + # in + # { + # neovim = + # pkgs.runCommand "neovim-check-health" { buildInputs = [ inputs.self.packages.${system}.neovim ]; } + # '' + # mkdir -p $out + # export HOME=$TMPDIR + # nvim -c "checkhealth" -c "write $out/health.log" -c "quitall" - # Check for errors inside the health log - if $(grep "ERROR" $out/health.log); then - cat $out/health.log - exit 1 - fi - ''; - } - ); + # # Check for errors inside the health log + # if $(grep "ERROR" $out/health.log); then + # cat $out/health.log + # exit 1 + # fi + # ''; + # } + # ); formatter = lib.forAllSystems ( system: