nixos-wsl/nix/treefmt.nix

24 lines
453 B
Nix
Raw Permalink Normal View History

2024-09-09 22:08:49 +02:00
{ inputs, ... }:
{
imports = with inputs; [
treefmt-nix.flakeModule
];
perSystem =
{ config, ... }:
{
formatter = config.treefmt.build.wrapper;
treefmt = {
projectRootFile = "flake.nix";
programs = {
deadnix.enable = true;
deadnix.no-lambda-pattern-names = true;
statix.enable = true;
nixpkgs-fmt.enable = true;
};
};
};
}