13 lines
295 B
Nix
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;
|
|
};
|
|
};
|
|
}
|