nixos-config/flake-parts/formatter.nix

11 lines
223 B
Nix

{ inputs, self, ... }:
{
perSystem =
{ pkgs, ... }:
{
formatter =
"${self}/treefmt.nix"
|> inputs.treefmt.lib.evalModule pkgs
|> (formatter: formatter.config.build.wrapper);
};
}