dfhack-files/nix/formatter.nix
Ingolf Wagner a0656abe2f
🎉 init
2024-11-15 21:15:35 +07:00

13 lines
295 B
Nix

{ inputs, ... }:
{
imports = [ inputs.treefmt-nix.flakeModule ];
perSystem = _: {
treefmt = {
# https://flake.parts/options/treefmt-nix < for all options
projectRootFile = ".git/config";
programs.nixfmt.enable = true;
programs.biome.enable = true;
};
};
}