flake: disable linters

This commit is contained in:
xeals 2023-09-27 17:24:53 +10:00
parent fc9e687e8d
commit b130423331
Signed by: xeals
SSH Key Fingerprint: SHA256:pRv+8swQDA+/LuZ7NHj9m006BbKexlNK62OUA01ZZBc

View File

@ -18,12 +18,13 @@
packages = import ./pkgs/top-level { localSystem = system; inherit pkgs; }; packages = import ./pkgs/top-level { localSystem = system; inherit pkgs; };
checks = { checks = {
nixpkgs-fmt = pkgs.writeShellScriptBin "nixpkgs-fmt-check" '' # FIXME: Disabled until I can work out what to do with generated code.
${pkgs.nixpkgs-fmt}/bin/nixpkgs-fmt --check . # nixpkgs-fmt = pkgs.writeShellScriptBin "nixpkgs-fmt-check" ''
''; # ${pkgs.nixpkgs-fmt}/bin/nixpkgs-fmt --check .
deadnix = pkgs.writeShellScriptBin "deadnix-check" '' # '';
${pkgs.deadnix}/bin/deadnix --fail . # deadnix = pkgs.writeShellScriptBin "deadnix-check" ''
''; # ${pkgs.deadnix}/bin/deadnix --fail .
# '';
# Ensures that the NUR bot can evaluate and find all our packages. # Ensures that the NUR bot can evaluate and find all our packages.
# Normally we'd also run with `--option restrict-eval true`, but # Normally we'd also run with `--option restrict-eval true`, but
# this is incompatible with flakes because reasons. # this is incompatible with flakes because reasons.