treefmt: disable actionlint on darwin

This commit is contained in:
zowoq 2024-05-13 16:02:42 +10:00 committed by nix-infra-bot
parent 37e3269ca5
commit f71aa2b5f6

View file

@ -22,7 +22,8 @@
programs.prettier.enable = true;
settings.formatter = {
actionlint = {
# https://hydra.nixos.org/build/258938640
actionlint = pkgs.lib.mkIf (!pkgs.stdenv.isDarwin) {
command = pkgs.actionlint;
includes = [ ".github/workflows/*.yml" ];
};