nixos-config/flake-parts/formatter.nix

8 lines
172 B
Nix

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