aboutsummaryrefslogtreecommitdiff
path: root/infra/nix/_treefmt.nix
blob: 19872294f1f4618befb0407625680fac651f6a57 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ treefmt-nix, pkgs, ... }:
let
  conf = {
    imports = [ ../../root/nix/_treefmt-base.nix ];

    settings.excludes = [
      "modules/base/secrets.yaml"
    ];
  };
in
treefmt-nix.lib.mkWrapper pkgs conf