website/treefmt.nix
Jan Kremer bc23423206
meta: Big update
- Update design
- Add new logo
- All posts in a single category
- New draft: Selbst Hosting
2025-02-22 19:08:52 +01:00

32 lines
631 B
Nix

{ pkgs, ... }:
{
projectRootFile = "flake.nix";
programs = {
nixfmt.enable = true;
gofmt.enable = true;
taplo.enable = true;
prettier = {
enable = true;
settings = {
plugins = [
"${pkgs.prettier-plugin-go-template}/lib/node_modules/prettier-plugin-go-template/lib/index.js"
];
overrides = [
{
files = [ "*.html" ];
options.parser = "go-template";
}
];
};
};
};
settings.global.excludes = [
"archetypes/**"
"public/**"
"static/**"
".envrc"
"*.webp"
"*.xml"
"*.svg"
];
}