Skip to content

Commit

Permalink
disable deno on darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 authored and mergify[bot] committed Sep 26, 2024
1 parent 18a4a69 commit c89b16b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions treefmt/flake-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
imports = [
inputs.treefmt-nix.flakeModule
];
perSystem = { config, ... }: {
perSystem = { config, pkgs, ... }: {
treefmt = {
projectRootFile = "flake.nix";
programs.mdsh.enable = true;
programs.nixpkgs-fmt.enable = true;
programs.shellcheck.enable = true;
programs.shfmt.enable = true;
programs.deno.enable = true;
programs.deno.enable = !pkgs.deno.meta.broken;
settings.formatter.shellcheck.options = [ "-s" "bash" ];
};
formatter = config.treefmt.build.wrapper;
Expand Down

0 comments on commit c89b16b

Please sign in to comment.