Files
nix/hosts/common/configs/user/console/nix-develop/treefmt.nix
2025-02-21 09:19:44 +00:00

20 lines
219 B
Nix

{ ... }:
{
projectRootFile = "flake.nix";
programs = {
nixfmt = {
enable = true;
strict = true;
};
};
settings = {
global = {
excludes = [
".envrc"
];
};
};
}