1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2025-05-30 23:22:03 +02:00
parent 0e5f0bd3a8
commit bf1595d374
No known key found for this signature in database
3 changed files with 32 additions and 17 deletions

View file

@ -60,9 +60,24 @@
treefmt = {
projectRootFile = "flake.nix";
programs.nixfmt = {
enable = true;
package = pkgs.nixfmt-rfc-style;
settings.global.excludes = [
"LICENSE"
"*.age"
".envrc"
];
programs = {
nixfmt = {
enable = true;
package = pkgs.nixfmt-rfc-style;
};
shfmt = {
enable = true;
indent_size = 2;
};
mdformat.enable = true;
};
};