formatted

This commit is contained in:
2025-03-18 03:33:27 -05:00
parent 9c2e5587cf
commit e9c321b8e2
15 changed files with 885 additions and 699 deletions

17
treefmt.nix Normal file
View File

@@ -0,0 +1,17 @@
# treefmt.nix
{ ... }:
{
projectRootFile = "treefmt.nix";
settings.global.excludes = [
"*.toml"
"*.ttf"
"*.txt"
];
programs.deadnix.enable = true;
programs.mdsh.enable = true;
programs.nixfmt.enable = true;
programs.shellcheck.enable = true;
programs.shfmt.enable = true;
programs.yamlfmt.enable = true;
}