Files
rust_template/nix/treefmt.nix
T

15 lines
347 B
Nix
Raw Normal View History

# 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;
};
};
}