share-host/nix/formatter.nix
Ingolf Wagner e6f403cc4c
🎉 init
2024-11-16 22:07:17 +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.black.enable = true;
};
};
}