nixconf/treefmt.nix
Deepak Mallubhotla a057d9bcc7
All checks were successful
gitea-deepak/nixconf/pipeline/head This commit looks good
Test templates, puts into cache / nix (nix-runner) (push) Successful in 6m33s
fmt: reformat
2025-03-24 04:12:00 -05:00

32 lines
501 B
Nix

# treefmt.nix
{ ... }:
{
projectRootFile = "treefmt.nix";
settings.global.excludes = [
"*.toml"
"*.ttf"
"*.txt"
"*.otf"
"Jenkinsfile"
"fonts/out/*"
];
programs.deadnix.enable = true;
programs.mdsh.enable = true;
programs.nixfmt.enable = true;
programs.shellcheck.enable = true;
programs.shfmt.enable = true;
settings.formatter.shfmt.indent_size = 0;
programs.yamlfmt.enable = true;
programs.just.enable = true;
programs.stylua.enable = true;
}