1
0
Fork 0
nix-configuration/treefmt.nix

16 lines
290 B
Nix
Raw Normal View History

2024-12-06 18:04:47 +00:00
# Configure formatter for .nix and other repo files
{ pkgs, ... }:
{
projectRootFile = "flake.nix";
programs = {
beautysh.enable = true;
nixfmt = {
enable = true;
package = pkgs.nixfmt-rfc-style;
};
prettier.enable = true;
yamlfmt.enable = true;
};
}