15 lines
347 B
Nix
15 lines
347 B
Nix
# treefmt-nix module: wires up `nix fmt` and the `formatting` check.
|
|||
|
|
_: {
|
||
|
|
perSystem = _: {
|
||
|
|
treefmt = {
|
||
|
|
projectRootFile = "flake.nix";
|
||
|
|
|
||
|
|
programs.rustfmt.enable = true;
|
||
|
|
programs.nixfmt.enable = true;
|
||
|
|
programs.deadnix.enable = true;
|
||
|
|
programs.statix.enable = true;
|
||
|
|
programs.taplo.enable = true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|